-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 2.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "webextension",
"version": "1.3.3",
"description": "Check secrets in your request/response using secretlint.",
"keywords": [
"webextension",
"secretlint",
"secrets",
"credentials",
"security"
],
"homepage": "https://github.com/secretlint/webextension",
"bugs": {
"url": "https://github.com/secretlint/webextension/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/secretlint/webextension.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/webextension.js",
"module": "module/webextension.js",
"types": "lib/webextension.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/"
],
"scripts": {
"test": "yarn run type-check && yarn run lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"dev": "webextension-toolbox dev",
"build": "webextension-toolbox build",
"type-check": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf lib/ module/",
"update:schema": "create-validator-ts ./app/scripts/settings/SettingSchema.ts",
"prepublishOnly": "npm run clean && npm run build",
"versionup:patch": "cd app && npm version patch",
"versionup:minor": "cd app && npm version minor",
"versionup:major": "cd app && npm version major"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/codemirror": "^5.60.7",
"@types/har-format": "^1.2.10",
"@types/jsesc": "^3.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.21",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.16",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"create-validator-ts": "^2.0.0",
"css-loader": "^6.7.3",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^11.2.6",
"mocha": "^9.2.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.3.5",
"webextension-toolbox": "^4.0.3",
"webpack-watched-glob-entries-plugin": "^2.2.6"
},
"dependencies": {
"@rjsf/core": "^3.2.1",
"@secretlint/core": "^3.3.0",
"@secretlint/secretlint-rule-pattern": "^3.3.0",
"@secretlint/secretlint-rule-preset-recommend": "^3.3.0",
"codemirror": "^5.65.12",
"react": "^17.0.2",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.2",
"webext-bridge": "^4.1.1",
"webextension-polyfill-ts": "^0.26.0"
},
"resolutions": {
"webpack": "5.76.3"
}
}