-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 KB
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
{
"name": "simplenum",
"version": "0.0.4",
"type": "module",
"author": "fengjian",
"description": "枚举工具 实用枚举定义",
"keywords": [
"enum",
"Enum",
"枚举定义",
"前端枚举工具",
"实用枚举定义"
],
"files": [
"dist/"
],
"main": "./dist/enum.umd.js",
"module": "./dist/enum.es.js",
"exports": {
".": {
"import": "./dist/enum.es.js",
"require": "./dist/enum.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "rimraf -rf ./dist && tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@codemirror/lang-javascript": "^6.2.1",
"@highlightjs/vue-plugin": "^2.1.0",
"@types/codemirror": "^5.60.15",
"@types/lodash-es": "^4.17.9",
"@vitejs/plugin-vue": "^4.5.0",
"ant-design-vue": "^4.0.7",
"codemirror": "^6.0.1",
"highlight.js": "^11.9.0",
"rimraf": "^5.0.1",
"typescript": "^5.0.2",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.0",
"vue": "^3.3.9",
"vue-codemirror": "^6.1.1"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/MeetTheBest/enum",
"repository": {
"type": "git",
"url": "https://github.com/MeetTheBest/enum.git"
},
"license": "MIT"
}