-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "vactapp",
"version": "0.9.2",
"main": "lib/boundle.js",
"types": "index.d.ts",
"license": "MIT",
"author": "烟云雾沧海",
"description": "前端响应式新框架",
"scripts": {
"dev": "rollup -c --watch",
"test": "jest --passWithNoTests",
"build": "cross-env NODE_ENV=production rollup -c"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^18.0.0",
"cross-env": "^7.0.3",
"jest": "^28.1.3",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0"
},
"repository": "https://github.com/yanyunwu/vact",
"keywords": [
"前端框架",
"响应式",
"响应式前端框架"
],
"files": [
"lib",
"src",
"index.d.ts",
"index.ts",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
]
}