forked from ice-lab/icepkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.49 KB
/
package.json
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
{
"name": "icepkg",
"private": true,
"version": "1.0.0",
"description": "The next generation of npm package development kit.",
"scripts": {
"preinstall": "npx only-allow pnpm",
"setup": "rm -rf node_modules && rm -rf ./packages/*/node_modules && pnpm i --registry=https://registry.npmmirror.com && npm run build",
"build": "pnpm run-s clean build-ahead build-behind",
"build-ahead": "pnpm -r --filter ./packages/pkg --filter ./packages/plugin-component --filter ./packages/plugin-rax-component run build",
"build-behind": "pnpm --parallel --filter ./packages/plugin-docusaurus --filter ./packages/create-pkg --filter ./packages/ice-npm-utils run build",
"clean": "rm -rf packages/*/lib",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx,.mts,.mjs ./",
"lint:fix": "npm run lint -- --fix",
"publish:packages": "ts-node ./scripts/publish.ts",
"build:doc": "cd website && npm run build"
},
"author": "ICE Team",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@iceworks/spec": "^1.6.0",
"eslint": "^8.19.0",
"ice-npm-utils": "workspace:^3.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/node": "^17.0.45",
"axios": "^0.23.0",
"c8": "^7.11.3",
"ts-node": "^10.8.2",
"vitest": "^0.7.13"
},
"pnpm": {
"overrides": {
"build-scripts": "2.0.0-18"
}
}
}