-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.3 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "unplugin-inline-enum",
"type": "module",
"version": "0.7.0",
"packageManager": "pnpm@10.33.0",
"description": "Inline enum values to optimize bundle size.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/unplugin/unplugin-inline-enum#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-inline-enum.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-inline-enum/issues"
},
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"exports": {
".": "./dist/index.mjs",
"./api": "./dist/api.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*.d.mts",
"./*"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsgo --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"ast-kit": "^2.2.0",
"picomatch": "^4.0.4",
"rolldown-string": "^0.3.0",
"tinyglobby": "^0.2.15",
"unplugin": "^3.0.0",
"unplugin-replace": "^0.8.0"
},
"devDependencies": {
"@babel/types": "^7.29.0",
"@sxzz/eslint-config": "^7.8.4",
"@sxzz/prettier-config": "^2.3.1",
"@sxzz/test-utils": "^0.5.16",
"@types/node": "^25.5.0",
"@types/picomatch": "^4.0.2",
"@typescript/native-preview": "7.0.0-dev.20260330.1",
"bumpp": "^11.0.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"rolldown": "1.0.0-rc.12",
"rollup": "^4.60.1",
"tsdown": "^0.21.7",
"tsdown-preset-sxzz": "^0.5.0",
"typescript": "^6.0.2",
"unplugin-oxc": "^0.6.0",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"webpack": "^5.105.4"
},
"prettier": "@sxzz/prettier-config"
}