-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.89 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.89 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
{
"name": "unplugin-starter",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.31.0",
"description": "Description.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/sxzz/unplugin-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/unplugin-starter.git"
},
"bugs": {
"url": "https://github.com/sxzz/unplugin-starter/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rspack",
"rollup",
"rolldown",
"esbuild",
"farm"
],
"exports": {
".": "./dist/index.js",
"./api": "./dist/api.js",
"./esbuild": "./dist/esbuild.js",
"./farm": "./dist/farm.js",
"./rolldown": "./dist/rolldown.js",
"./rollup": "./dist/rollup.js",
"./rspack": "./dist/rspack.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*.d.ts",
"./*"
]
}
},
"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": "tsc --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"unplugin": "^3.0.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^7.8.3",
"@sxzz/prettier-config": "^2.3.1",
"@sxzz/test-utils": "^0.5.15",
"@types/node": "^25.3.5",
"bumpp": "^10.4.1",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"tsdown": "^0.21.0",
"tsdown-preset-sxzz": "^0.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"prettier": "@sxzz/prettier-config"
}