-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.38 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
46
47
48
49
50
51
52
{
"name": "esbuild-plugin-text-replace",
"version": "1.3.0",
"main": "dist/index.js",
"module": "dist/index.esm.mjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.esm.mjs"
}
},
"source": "src/index.ts",
"types": "dist/index.d.ts",
"license": "bsd-2-clause",
"description": "Replace Text with Regex in files before bundling.",
"keywords": [
"esbuild",
"plugin",
"replace",
"regex",
"text",
"module"
],
"author": "Andreas Heissenberger <[email protected]>",
"homepage": "https://github.com/aheissenberger/esbuild-plugin-text-replace",
"repository": {
"type": "git",
"url": "https://github.com/aheissenberger/esbuild-plugin-text-replace.git"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"esbuild": "^0.17.14",
"esbuild-plugin-pipe": "^0.2.0",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"mock-fs": "^5.2.0",
"ts-jest": "^29.0.5"
},
"scripts": {
"build": "microbundle build -i src/index.ts -f es,cjs --sourcemap",
"dev": "microbundle watch src/index.ts -f es,cjs --no-compress --sourcemap",
"prepublishOnly": "microbundle build -i src/index.ts -f es,cjs --compress --no-sourcemap",
"test": "jest"
},
"dependencies": {
"ts-replace-all": "^1.0.0"
},
"engines": {
"node": ">=10.1.0"
}
}