-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
45 lines (45 loc) · 1.65 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
44
45
{
"name": "icepkg",
"private": true,
"version": "0.0.0",
"description": "The next generation of npm package development kit.",
"scripts": {
"preinstall": "npx only-allow pnpm",
"setup": "pnpm i && pnpm run build",
"build": "pnpm run clean && pnpm -r --filter=./packages/* run build",
"watch": "pnpm --parallel --filter=./packages/* run watch",
"clean": "rm -rf packages/*/lib",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx,.mts,.mjs ./",
"lint:fix": "pnpm run lint --fix",
"build:doc": "cd website && pnpm run build",
"changeset": "changeset",
"install:frozen": "pnpm install --frozen-lockfile false",
"version": "changeset version && pnpm install:frozen",
"release": "changeset publish",
"release:beta": "changeset pre enter beta && pnpm run version && pnpm build && pnpm release && changeset pre exit",
"release:snapshot": "changeset version --snapshot canary && pnpm install:frozen && pnpm build && pnpm release --tag canary --no-git-tag --snapshot"
},
"author": "ICE Team",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^15.0.0",
"@iceworks/spec": "^1.6.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.45",
"@vitest/coverage-c8": "catalog:",
"axios": "^0.23.0",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"fs-extra": "^10.1.0",
"ice-npm-utils": "workspace:^3.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"ts-node": "^10.8.2",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "[email protected]"
}