-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.85 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
61
{
"name": "yapi-interface-extension",
"version": "1.2.1",
"description": "一个 YAPI 浏览器插件,在 YAPI 接口文档显示 TypeScript interface",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=develop esmo build.ts",
"build": "cross-env NODE_ENV=production esmo build.ts",
"lint": "eslint src --ext .js,.ts --cache --fix",
"zip": "zip -q -r yapi-interface-extension.zip dist",
"clean": "rm -rf dist",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/molvqingtai/yapi-interface-extension.git"
},
"keywords": [
"yapi",
"yapi-plugin",
"interface"
],
"author": "molvqingtai",
"license": "MIT",
"bugs": {
"url": "https://github.com/molvqingtai/yapi-interface-extension/issues"
},
"homepage": "https://github.com/molvqingtai/yapi-interface-extension#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/webextension-polyfill": "^0.8.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cross-env": "^7.0.3",
"esbuild": "^0.13.15",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"esno": "^0.13.0",
"glob": "^7.1.7",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"zx": "^4.2.0"
},
"dependencies": {
"@mswjs/interceptors": "^0.13.0",
"@types/prismjs": "^1.16.6",
"lit": "^2.0.2",
"prismjs": "^1.25.0",
"raw-to-ts": "^0.1.4",
"webextension-polyfill": "^0.8.0"
}
}