-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"name": "root",
"version": "1.0.0",
"description": "",
"private": "true",
"type": "module",
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"lint-staged": "npx lint-staged",
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"select": "changeset add",
"release": "changeset version",
"publish": "changeset publish",
"lint": "eslint --cache",
"format": "prettier --write --cache"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{js,vue,ts,jsx,tsx}": [
"prettier --write"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/vue3/*",
"packages/vue/*",
"packages/react/*"
],
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"cz-git": "^1.9.4",
"esbuild": "^0.24.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"picocolors": "^1.1.0",
"rollup": "^4.22.5",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}