-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
46
{
"private": true,
"name": "mini-vue-core",
"version": "1.0.0",
"description": "手撕vue3源码学习",
"type": "module",
"directories": {
"example": "example",
"packages": "packages"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chris-zhu/mini-vue-core.git"
},
"keywords": [
"vue-core"
],
"author": "chris-zhu <https://github.com/chris-zhu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chris-zhu/mini-vue-core/issues"
},
"homepage": "https://github.com/chris-zhu/mini-vue-core#readme",
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"lint:fix": "pnpm lint -- --fix"
},
"devDependencies": {
"@chris-zhu/eslint-config": "^0.0.5",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"eslint": "^8.10.0",
"execa": "^5.0.0",
"rollup": "^2.42.1",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@chris-zhu/utils": "^0.0.7"
}
}