-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "vite-plugin-global-const",
"version": "0.0.6",
"type": "module",
"description": "Define constants for your project to facilitate reuse of your code across multiple products",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "types",
"repository": "https://github.com/censujiang/vite-plugin-global-const.git",
"homepage": "https://github.com/censujiang/vite-plugin-global-const",
"bugs": {
"url": "https://github.com/censujiang/vite-plugin-global-const/issues"
},
"author": "江程训 <[email protected]>",
"license": "Apache License 2.0",
"keywords": [
"vite",
"global const",
"vite-plugin",
"const",
"global"
],
"private": false,
"files": [
"/dist",
"/src",
"/esm",
"/types"
],
"scripts": {
"build": "tsc && unbuild",
"demo:reload": "node ./scripts/demo-reload.js",
"release": "node ./scripts/release.js"
},
"devDependencies": {
"@types/node": "^20.9.0",
"shelljs": "^0.8.5",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.5.0"
}
}