generated from MrMarble/userscript-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "humble-bundle-extra",
"version": "1.6.0",
"author": {
"name": "MrMarble",
"url": "https://mrmarble.dev"
},
"repository": {
"url": "https://github.com/MrMarble/humble-bundle-extra"
},
"homepage": "https://github.com/MrMarble/humble-bundle-extra",
"description": "User script for humble bundle. Adds steam store links to all games and marks already owned games",
"license": "MIT",
"type": "module",
"private": "true",
"scripts": {
"prepare": "husky install",
"postinstall": "husky install",
"build": "rollup --config",
"build:clean": "rimraf dist && yarn build",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"postversion": "yarn build:clean",
"prepublish": "yarn build:clean"
},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/tampermonkey": "^4.0.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"normalize-package-data": "^3.0.2",
"prettier": "^2.3.0",
"read-pkg": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-sizes": "^1.0.4",
"semantic-release": "^17.4.3"
},
"userscript": {
"namespace": "https://humblebundle.com",
"match": [
"*://*.humblebundle.com/*"
],
"connect": [
"api.steampowered.com",
"store.steampowered.com"
],
"grant": [
"GM_xmlhttpRequest"
],
"icon": "https://humblebundle-a.akamaihd.net/static/hashed/47e474eed38083df699b7dfd8d29d575e3398f1e.ico",
"license": "MIT"
}
}