-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
46
47
48
49
50
51
52
53
{
"packageManager": "[email protected]",
"version": "0.0.1",
"description": "",
"main": "index.js",
"private": "true",
"type": "module",
"scripts": {
"dev": "tsx scripts/dev.ts",
"build": "pnpm run build-bundle",
"build-bundle": "tsx scripts/build.ts",
"build-types": "tsx scripts/build-types.ts",
"build-test": "rollup --config rollup.config.js --environment NODE_ENV:development,TARGET:reactivity",
"pub": "tsx scripts/publish.ts",
"lint": "eslint --cache --ext .ts packages/*/{src,__tests__}/**.ts",
"format": "prettier --write --cache \"**/*.[tj]s?(x)\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@baicie/commitizen": "^0.1.0",
"@pnpm/find-workspace-packages": "^6.0.9",
"@pnpm/types": "^12.1.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint": "^9.6.1",
"@types/jsdom": "^21.1.7",
"@types/minimist": "^1.2.5",
"@types/node": "^22.5.2",
"commitizen": "^4.3.0",
"consola": "^3.2.3",
"cz-customizable": "^7.2.1",
"esbuild": "^0.23.1",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^9.9.1",
"execa": "^9.3.1",
"jsdom": "^25.0.0",
"picocolors": "^1.0.1",
"rollup": "^4.21.2",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"tsx": "^4.19.0",
"vite": "^5.4.2",
"vuemini": "workspace:^"
}
}