-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
72
73
74
75
76
{
"name": "@hoci/monorepo",
"type": "module",
"version": "0.6.0",
"private": true,
"packageManager": "[email protected]",
"description": "hook ui .",
"author": "Chizuki <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"hooks"
],
"files": [
"dist/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "pnpm -r --parallel --filter=./packages/** build",
"stub": "pnpm -r --parallel --filter=./packages/** run stub",
"lint": "eslint --cache .",
"test": "pnpm stub && vitest",
"typecheck": "tsc --noEmit --skipLibCheck",
"dev": "vite playground",
"play": "vite playground",
"build:play": "vite build playground",
"bump": "bumpp package.json packages/*/package.json --commit --push --tag",
"pub": "pnpm build && pnpm -r publish --access public --no-git-checks --registry https://registry.npmjs.org/",
"preinstall": "npx only-allow pnpm",
"prepare": "npx simple-git-hooks",
"prepublish": "pnpm build",
"up:deps": "taze -r major",
"up:polyfill": "nolyfill install",
"regit": "git fetch --all && git reset --hard origin/main && git pull && git remote prune origin",
"docs": "pnpm -C docs dev",
"build:docs": "pnpm -C docs build",
"deploy": "pnpm build && pnpm build:docs"
},
"devDependencies": {
"@curev/eslint-config": "^0.3.7",
"@types/node": "^20.14.9",
"bumpp": "^9.4.1",
"eslint": "^8.57.0",
"lint-staged": "^15.2.7",
"nolyfill": "^1.0.31",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.8",
"typescript": "^5.5.2",
"unbuild": "^2.0.0",
"vitepress": "1.0.0-rc.44",
"vitest": "^1.6.0"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"has": "npm:@nolyfill/has@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
}
}