-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.73 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.73 KB
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
{
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"build:compiler-core": "pnpm -F @vureact/compiler-core build",
"build:runtime-core": "pnpm -F @vureact/runtime-core build",
"test:adapter-hooks": "pnpm -F @vureact/runtime-core test -- adapter-hooks",
"test:adapter-utils": "pnpm -F @vureact/runtime-core test -- adapter-utils",
"test:adapter-components": "pnpm -F @vureact/runtime-core test -- adapter-components"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/jest": "^30.0.0",
"@types/less": "^3.0.8",
"@types/node": "^20.19.25",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-transition-group": "^4.4.12",
"@types/update-notifier": "^6.0.8",
"@types/xxhashjs": "^0.2.4",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-visualizer": "^5.12.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"vue": "^3.5.22"
}
}