-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 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
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
{
"name": "hb-key-exporter",
"version": "0.4.1",
"description": "Userscript that aids in exporting Humble Bundle keys from the Humble Bundle website.",
"type": "module",
"private": true,
"downloadURL": "https://github.com/MrMarble/hb-key-exporter/releases/latest/download/hb-key-exporter.user.js",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky",
"dev": "rollup -wc",
"clean": "del-cli dist",
"lint": "eslint",
"lint:fix": "eslint --fix",
"ci": "run-s lint",
"build:js": "rollup -c",
"build": "cross-env NODE_ENV=production run-s ci clean build:js",
"changelog": "changelogen"
},
"author": {
"name": "MrMarble"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.2",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@violentmonkey/types": "^0.3.2",
"babel-preset-solid": "^1.9.10",
"changelogen": "^0.6.2",
"cross-env": "^10.1.0",
"datatables.net-dt": "^2.3.7",
"del-cli": "^7.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"lz-string": "^1.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"read-package-up": "^12.0.0",
"rollup": "^4.57.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-userscript": "^1.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
]
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@violentmonkey/dom": "^2.2.1",
"@violentmonkey/ui": "^0.7.9",
"solid-js": "^1.9.11"
}
}