-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.15 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.15 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
{
"name": "unplugin-replace",
"version": "0.6.0",
"packageManager": "pnpm@10.12.1",
"description": "A universal bundler plugin which replaces targeted strings in files.",
"type": "module",
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-replace#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-replace/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-replace.git"
},
"author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./rspack": "./dist/rspack.js",
"./rollup": "./dist/rollup.js",
"./rolldown": "./dist/rolldown.js",
"./esbuild": "./dist/esbuild.js",
"./farm": "./dist/farm.js",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"magic-string": "^0.30.17",
"unplugin": "^2.3.5"
},
"devDependencies": {
"@sxzz/eslint-config": "^7.0.2",
"@sxzz/prettier-config": "^2.2.1",
"@sxzz/test-utils": "^0.5.6",
"@types/node": "^22.15.30",
"bumpp": "^10.1.1",
"esbuild": "^0.25.5",
"eslint": "^9.28.0",
"fast-glob": "^3.3.3",
"prettier": "^3.5.3",
"rolldown": "nightly",
"rollup": "^4.42.0",
"tsdown": "^0.12.7",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.2",
"webpack": "^5.99.9"
},
"engines": {
"node": ">=20.18.0"
},
"prettier": "@sxzz/prettier-config"
}