-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1012 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
34
35
36
37
38
39
40
{
"name": "ghx-mini-vue3",
"version": "1.0.0",
"description": "手写vue3核心逻辑代码",
"main": "lib/guide-toy-vue3-cjs.js",
"module": "lib/guide-toy-vue3-esm.js",
"scripts": {
"test": "jest",
"build": "rollup -c rollup.config.js -w"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/HongxuanG/mini-vue3.git"
},
"keywords": [
"mini-vue3",
"vue3",
"coding"
],
"author": "HongxuanG",
"license": "MIT",
"bugs": {
"url": "https://github.com/HongxuanG/mini-vue3/issues"
},
"homepage": "https://github.com/HongxuanG/mini-vue3#readme",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"rollup": "^2.72.1",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
}
}