-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 908 Bytes
/
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
{
"name": "translator.user.js",
"version": "1.6.9",
"description": "Translate anything!",
"private": true,
"author": "",
"license": "ISC",
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "husky install",
"dev": "rollup -wc",
"build:js": "NODE_ENV=production rollup -c",
"build": "run-s lint clean build:js",
"lint": "eslint --ext .ts,.tsx .",
"clean": "del-cli dist",
"prepublishOnly": "run-s build"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"@types/trusted-types": "^2.0.7",
"@violentmonkey/types": "^0.1.7",
"del-cli": "^5.1.0",
"husky": "^9.0.11",
"rollup-plugin-userscript": "^0.3.2"
},
"dependencies": {
"@babel/runtime": "^7.24.0",
"@violentmonkey/dom": "^2.1.5",
"@violentmonkey/ui": "^0.7.8"
}
}