-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 786 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 786 Bytes
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
{
"name": "@walrus/plugin-replace",
"version": "1.0.1",
"description": "replace files code",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"walrus",
"replace",
"walrus-plugin",
"walrus-plugin-replace"
],
"files": [
"lib"
],
"repository": "git@github.com:walrusjs/walrus-plugin-replace.git",
"author": "wangxingkang <wang_xingkang@qq.com>",
"license": "MIT",
"scripts": {
"build": "pansy",
"build:watch": "pansy -w",
"replace": "walrus replace",
"prepublishOnly": "yarn build"
},
"dependencies": {
"replace-in-file": "^4.2.0"
},
"devDependencies": {
"@walrus/cli": "^0.4.1",
"@walrus/pansy": "^0.2.3",
"typescript": "^3.7.2"
},
"publishConfig": {
"access": "public"
}
}