forked from cuixiaorui/mini-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 905 Bytes
/
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
{
"name": "mini-vue",
"version": "0.0.1",
"description": "Help you learn more efficiently vue3 source code",
"main": "lib/mini-vue.cjs.js",
"module": "lib/mini-vue.esm.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"build:type": "tsc -p ./tsconfig.type.json",
"test": "jest --no-cache"
},
"author": "cuixiaorui",
"homepage": "https://github.com/cuixiaorui",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^26.0.0",
"jest": "^27.2.3",
"rollup": "^2.17.1",
"rollup-plugin-sourcemaps": "^0.6.2",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@vue/reactivity": "^3.0.5",
"pixi.js": "^6.2.0"
}
}