forked from naecoo/esbuild-plugin-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "esbuild-plugin-replace",
"version": "1.5.0",
"description": "Replace strings in files while bundling",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"author": "naecoo<[email protected]>",
"license": "MIT",
"keywords": [
"esbuild",
"plugin",
"replace",
"npm",
"module"
],
"files": [
"dist",
"types",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/naecoo/esbuild-plugin-replace.git"
},
"homepage": "https://github.com/naecoo/esbuild-plugin-replace/blob/main/README.md",
"bugs": "https://github.com/naecoo/esbuild-plugin-replace/issues",
"scripts": {
"test:unit": "vitest run",
"test:type": "tsc types/index.d.ts test/type.ts --noEmit",
"test": "npm run test:unit && npm run test:type",
"build": "node build.js",
"prepublish": "npm run test && npm run build"
},
"dependencies": {
"magic-string": "^0.25.7"
},
"devDependencies": {
"esbuild": "^0.17.19",
"typescript": "^4.2.3",
"vite": "^4.3.8",
"vitest": "^0.31.1"
}
}