-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "gaius-utils",
"private": false,
"version": "1.1.8",
"author": {
"name": "WangGuoshuai",
"email": "2388838628@qq.com"
},
"types": "./lib/utils.d.ts",
"exports": {
".": {
"import": "./lib/utils.js"
},
"./lib/style.css": {
"import": "./lib/style.css"
}
},
"keywords": [
"utils",
"vue"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Gaius-98/utils.git"
},
"license": "Apache-2.0",
"homepage": "https://github.com/Gaius-98/utils#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/Gaius-98/utils.git",
"email": "2388838628@qq.com"
},
"files": ["lib/*"],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit&& vite build",
"preview": "vite preview"
},
"dependencies": {
"sass": "^1.54.8",
"uuid": "^8.3.2",
"vite-plugin-dts": "^3.9.1",
"vue": "^3.4.31"
},
"devDependencies": {
"@types/node": "^18.7.14",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-vue": "^9.6.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^2.0.6"
}
}