-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "hlink-monorepo",
"version": "2.0.10",
"description": "hlink",
"repository": "likun7981/hlink",
"license": "MIT",
"author": {
"name": "likun7981",
"email": "[email protected]"
},
"type": "module",
"scripts": {
"app:dev": "pnpm -r --filter=./packages/app run dev",
"build": "npm run build:core && npm run build:app && npm run build:cli",
"build:app": "pnpm -r --filter=./packages/app run build",
"build:cli": "pnpm -r --filter=./packages/cli run build",
"build:core": "pnpm -r --filter=./packages/core run build",
"next": "pnpm -r --filter=./packages/* run np:next",
"release": "tsx scripts/release.ts",
"release:dry": "tsx scripts/release.ts --dry",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"lint": "eslint --fix packages/**/*.{ts,tsx}",
"clean": "rm -rf node_modules && rm -rf packages/*/node_modules",
"prepare": "husky install",
"test": "vitest run",
"test:watch": "vitest",
"ci-publish": "tsx scripts/publishCI.ts"
},
"lint-staged": {
"*": "prettier -wu",
"packages/**/*.{ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/meow": "^5.0.0",
"@types/node": "^18.0.0",
"@types/single-line-log": "^1.1.0",
"@types/wrap-ansi": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"chalk": "^5",
"commitlint": "^17.0.2",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"execa": "^6.1.0",
"fs-extra": "^10",
"husky": "^8.0.0",
"minimist": "^1.2.6",
"nodemon": "^2.0.16",
"np": "^7.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"tsx": "^3.7.1",
"typescript": "^4.6.4",
"vitepress": "^0.22.4",
"vitest": "^0.14.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^14.13.1 || >=16.0.0"
}
}