-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
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
{
"name": "pnpm-workspace-starter",
"version": "1.0.0",
"private": "true",
"keywords": [],
"homepage": "https://github.com/LinbuduLab/pnpm-workspace-example#readme",
"bugs": {
"url": "https://github.com/LinbuduLab/pnpm-workspace-example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinbuduLab/pnpm-workspace-example.git"
},
"license": "MIT",
"author": "linbudu599",
"scripts": {
"build:all": "pnpm run build -r --filter='pw-*' --if-present",
"ci:publish": "pnpm build:all && pnpm changeset publish",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && git add .",
"cli": "ts-node -P scripts/tsconfig.script.json scripts/cli.ts",
"cli-dev": "ts-node -P scripts/tsconfig.script.json --transpile-only scripts/cli.ts",
"cs:add": "changeset add",
"cs:publish": "changeset publish",
"cs:tag": "changeset tag",
"cs:version": "changeset version",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:serve": "vitepress serve docs",
"init:dep": "pnpx zx scripts/zx/install-workspace-root-deps-only.mjs",
"init:workspace": "pnpm init:dep && pnpm cli cache && pnpm cli init",
"postinstall": "pnpm cli cache && pnpm remind",
"remind": "ts-node -P scripts/tsconfig.script.json scripts/postinstall-reminder.ts"
},
"resolutions": {
"@types/eslint": "^7.0.0",
"chalk": "^4.0.0",
"eslint": "^7.0.0",
"execa": "^5.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.21.0",
"@types/fs-extra": "^9.0.13",
"@types/jsonfile": "^6.1.0",
"@types/lodash": "^4.14.179",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.21",
"@types/prettier": "^2.4.4",
"@types/prompts": "^2.0.14",
"cac": "^6.7.12",
"chalk": "^4.1.2",
"consola": "^2.15.3",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"fs-extra": "^10.0.1",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"nanoid": "^3.3.1",
"npm-check-updates": "^12.5.3",
"ora": "^5.4.1",
"preferred-pm": "^3.0.3",
"prettier": "^2.5.1",
"prompts": "^2.4.2",
"semver": "^7.3.5",
"simple-git": "^3.5.0",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"type-fest": "^2.12.0",
"typescript": "^4.6.2"
}
}