-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
53
54
55
56
57
58
59
60
{
"name": "@lzwme/whistle.x-scripts",
"version": "0.0.6",
"description": "一个基于 whistle 的代理脚本插件。用于辅助 web 程序调试、逆向学习等目的。让用户可以用自由编码开发的方式编写简单的规则脚本,即可实现自动保存登录认证 cookie、模拟接口数据、修改接口数据等功能。",
"main": "index.js",
"typings": "./typings/index.d.ts",
"license": "MIT",
"repository": "https://github.com/lzwme/whistle.x-scripts.git",
"author": {
"name": "renxia",
"email": "[email protected]",
"url": "https://lzw.me"
},
"scripts": {
"prepare": "husky || true",
"dev": "tsc -p tsconfig.cjs.json -w",
"lint": "flh --prettier --tscheck",
"build": "npm run clean && tsc -p tsconfig.cjs.json",
"version": "standard-version",
"release": "npm run test && npm run build",
"clean": "flh rm -f dist",
"test": "npm run lint"
},
"keywords": [
"whistle",
"proxy",
"cookie",
"env"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"files": [
"index.js",
"initial.js",
"rules.txt",
"w2.x-scripts.config.sample.js",
"./dist",
"./typings",
"./template"
],
"dependencies": {
"@lzwme/fe-utils": "^1.7.5",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@lzwme/fed-lint-helper": "^2.6.4",
"@types/node": "^22.9.0",
"base64-js": "^1.5.1",
"crypto-js": "^4.2.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "^5.6.3"
}
}