forked from Revadike/SteamWebIntegration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.95 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
{
"name": "steamwebintegration",
"version": "2.3.0",
"description": "Integrate your personal Steam information on the web, at your convenience!",
"main": "manifest.json",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir build || cp manifest.json build/manifest.json && cp popup.html build/popup.html && cp LICENSE build/LICENSE && cp -r --parents images build && cp -r --parents css build && cp -r --parents webfonts build && cp -r --parents scripts build",
"build:firefox": "cp manifest.firefox.json manifest.json",
"build:firefox:zip": "mkdir bin || npm run build:firefox && npm run build && (cd build && zip -1 -r ../bin/steamwebintegration-firefox.zip .) && npm run build:clear",
"build:chromium": "cp manifest.chromium.json manifest.json",
"build:chromium:zip": "mkdir bin || npm run build:chromium && npm run build && (cd build && zip -1 -r ../bin/steamwebintegration-chrome.zip .) && npm run build:clear",
"build:xpi": "mkdir bin || npm run build:firefox && npm run build && (cd build && zip -1 -r ../bin/steamwebintegration.xpi .) && npm run build:clear",
"build:crx": "mkdir bin || npm run build:chromium && npm run build && crx pack build -o bin/steamwebintegration.crx -p bin/steamwebintegration.pem && npm run build:clear",
"build:all": "npm run build:crx && npm run build:xpi",
"build:clear": "rm -rf build && rm -rf manifest.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/revadike/steamwebintegration.git"
},
"author": "Revadike",
"contributors": [
"bestpika",
"HCLonely",
"Luckz",
"pumPCin",
"undefo",
"WiLuX-Source"
],
"license": "LICENSE",
"bugs": {
"url": "https://github.com/revadike/steamwebintegration/issues"
},
"homepage": "https://github.com/revadike/steamwebintegration#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"crx": "^5.0.1",
"eslint": "^8.35.0"
}
}