-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "sendtoclient",
"version": "2.3.2",
"description": "",
"author": "notmarek",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "husky install",
"dev": "rollup -wc rollup.conf.js",
"clean": "del-cli dist",
"build:js": "NODE_ENV=production rollup -c rollup.conf.js",
"prebuild": "run-s ci clean",
"build": "cross-env NODE_ENV=production run-s build:js",
"ci": "run-s lint",
"lint": "eslint --ext .js ."
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@violentmonkey/dom": "^2.1.3",
"@violentmonkey/ui": "^0.7.6"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@gera2ld/plaid": "~2.5.6",
"@gera2ld/plaid-rollup": "~2.5.6",
"@violentmonkey/types": "^0.1.4",
"del-cli": "^5.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"rollup-plugin-userscript": "^0.1.1"
}
}