-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "my-vue",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "基于 vue3 源码实现的一个 由TDD驱动的happy path 版 vue3",
"main": "packages/vue/dist/my-vue.cjs.js",
"module": "packages/vue/dist/my-vue.esm.js",
"scripts": {
"test": "vitest",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/X-swordx/my-vue.git"
},
"keywords": [
"vue3",
"typescript",
"tdd"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/X-swordx/my-vue/issues"
},
"homepage": "https://github.com/X-swordx/my-vue#readme",
"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",
"rollup": "^2.17.1",
"rollup-plugin-sourcemaps": "^0.6.2",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"vite": "^4.1.1",
"vitest": "^0.22.1"
}
}