-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "toy-office",
"version": "1.0.0",
"main": "./lib/toy-sheet.umd.js",
"module": "./lib/toy-sheet.es.js",
"exports": {
".": {
"import": "./lib/toy-sheet.es.js",
"require": "./lib/toy-sheet.umd.js"
}
},
"files": [
"lib"
],
"scripts": {
"serve": "vite",
"build:page": "vue-tsc --noEmit && vite build",
"build:lib": "vue-tsc --noEmit && vite build --mode lib"
},
"dependencies": {
"@ant-design/icons-vue": "^6.0.1",
"vue": "^3.0.5"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vitejs/plugin-vue-jsx": "^1.1.4",
"@vue/compiler-sfc": "^3.0.5",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.9.0",
"less": "^4.1.1",
"typescript": "^4.1.3",
"vite": "^2.3.3",
"vue-tsc": "^0.0.24"
}
}