-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.85 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "unplugin-inline-const-enum",
"version": "0.0.4",
"type": "module",
"packageManager": "yarn@4.12.0",
"repository": {
"type": "git",
"url": "https://github.com/AntaresQAQ/unplugin-inline-const-enum"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"run-test": "npx ts-node test/run.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^7.3.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
},
"dependencies": {
"@babel/types": "^7.28.5",
"ast-kit": "^2.2.0",
"fast-glob": "^3.3.3",
"magic-string": "^0.30.21",
"tsconfig-paths": "^4.2.0",
"unplugin": "^2.3.11"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./esbuild": {
"types": "./dist/esbuild.d.mts",
"import": "./dist/esbuild.mjs"
},
"./rolldown": {
"types": "./dist/rolldown.d.mts",
"import": "./dist/rolldown.mjs"
},
"./rollup": {
"types": "./dist/rollup.d.mts",
"import": "./dist/rollup.mjs"
},
"./vite": {
"types": "./dist/vite.d.mts",
"import": "./dist/vite.mjs"
},
"./webpack": {
"types": "./dist/webpack.d.mts",
"import": "./dist/webpack.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
]
}