-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "webextension-automate",
"version": "1.0.0",
"description": "Browser automation engine",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc --build --watch",
"build": "tsc --build",
"rl:major": "tsc --build && npm version $(semver %npm_package_version% -i major)",
"rl:minor": "tsc --build && npm version $(semver %npm_package_version% -i minor)",
"rl:patch": "tsc --build && npm version $(semver %npm_package_version% -i patch)",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --write .",
"lint:eslint": "eslint --fix ."
},
"keywords": [
"automation",
"browser",
"automate"
],
"author": "kb2a",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.242",
"@types/webextension-polyfill": "^0.10.1",
"@typescript-eslint/eslint-plugin": ">=6.2.0",
"@typescript-eslint/parser": ">=6.2.0",
"eslint": ">=8.46.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"semver": "^7.5.4",
"typescript": ">=5.1.6"
},
"dependencies": {
"await-to-js": "^3.0.0",
"nanoid": "^4.0.2",
"webextension-polyfill": "^0.10.0"
}
}