-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.77 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "unplugin-app-update",
"version": "1.3.1",
"description": "App deployment user notification. Support webpack vite. Unrestricted framework, React, Vue, Angular can all be used",
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"plugin",
"update"
],
"license": "MIT",
"authors": {
"name": "Vgbire",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/Vgbire/unplugin-app-update",
"repository": "https://github.com/Vgbire/unplugin-app-update",
"bugs": "https://github.com/Vgbire/unplugin-app-update/issues",
"workspaces": [
"examples/*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup"
},
"dependencies": {
"antd": "^5.20.1",
"i18next": "^23.13.0",
"unplugin": "^1.12.1"
},
"devDependencies": {
"eslint": "^9.9.0",
"install": "^0.13.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5",
"webpack": "^5.93.0"
}
}