forked from cuixiaorui/mini-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 807 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
{
"name": "rollup-starter-ts",
"version": "0.0.1",
"description": "To fast start a typescript library.",
"main": "lib/mini-vue.cjs.js",
"module": "lib/mini-vue.esm.js",
"scripts": {
"build": "rollup -c",
"build:type": "tsc -p ./tsconfig.type.json",
"test": "jest --no-cache"
},
"author": "zenoslin",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^26.0.0",
"jest": "^26.0.1",
"rollup": "^2.17.1",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^26.1.0",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"dependencies": {
"@vue/reactivity": "^3.0.0-beta.15"
}
}