-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.05 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@pixel-ui-react/workspace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "pnpm --filter @pixel-ui-react/play dev",
"docs:dev": "pnpm --filter @pixel-ui-react/docs dev",
"docs:build": "pnpm --filter @pixel-ui-react/docs build",
"docs:preview": "pnpm --filter @pixel-ui-react/docs preview",
"test": "run-s test-utils test-hooks test-comp",
"test-comp": "cross-env NODE_ENV=test pnpm --filter @pixel-ui-react/components test",
"test-utils": "cross-env NODE_ENV=test pnpm --filter @pixel-ui-react/utils test",
"test-hooks": "cross-env NODE_ENV=test pnpm --filter @pixel-ui-react/hooks test",
"build": "run-s build-hooks build-comp",
"build-comp": "cross-env NODE_ENV=production pnpm --filter @duheng1992/pixel-ui-react build",
"build-hooks": "cross-env NODE_ENV=production pnpm --filter @pixel-ui-react/hooks build",
"build:dev": "cross-env NODE_ENV=development pnpm --filter @duheng1992/pixel-ui-react build:watch",
"worklet": "pnpm --filter @pixel-ui-react/components worklet",
"preview": "vite preview",
"lint": "eslint packages --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.4.1",
"devDependencies": {
"@ctrl/tinycolor": "^4.1.0",
"@popperjs/core": "^2.11.8",
"@rushstack/eslint-patch": "^1.10.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.6.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/shelljs": "^0.8.15",
"@types/react-transition-group": "^4.4.12",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.29.0",
"@unocss/eslint-config": "^66.1.2",
"@unocss/preset-rem-to-px": "66.1.0-beta.6",
"@unocss/preset-uno": "66.1.0-beta.6",
"@unocss/reset": "66.1.0-beta.6",
"@vitejs/plugin-react-swc": "^4.1.0",
"@vitest/coverage-v8": "^1.6.0",
"cross-env": "^7.0.3",
"react-transition-group": "^4.4.5",
"react-intl": "^7.1.11",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^24.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"release-it": "^18.1.2",
"rimraf": "^6.0.1",
"shelljs": "^0.8.5",
"typescript": "^5.8.2",
"unocss": "66.1.0-beta.6",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.4.0"
},
"dependencies": {
"@duheng1992/pixel-ui-react": "workspace:*",
"@pixel-ui-react/hooks": "workspace:*",
"@pixel-ui-react/locale": "workspace:*",
"@pixel-ui-react/theme": "workspace:*",
"@pixel-ui-react/utils": "workspace:*",
"@pixel-ui-react/vite-plugins": "workspace:*",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"@types/node": "^24.6.2",
"vite": "^5.1.4",
"typescript": "^5.8.2",
"react": "^19.1.1",
"react-dom": "^19.1.1"
}
}