-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.41 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "gazelle-forum-games-eligibility-checker",
"version": "4.0.7",
"description": "Tracks forum games participation eligibility and marks thread read indicators accordingly.",
"keywords": [
"gazelle",
"games",
"forum",
"userscript",
"greasemonkey",
"tampermonkey",
"rollup",
"typescript"
],
"homepage": "https://github.com/FinalDoom/gazelle-forum-games",
"repository": {
"type": "git",
"url": "github:FinalDoom/gazelle-forum-games"
},
"bugs": {
"url": "https://github.com/FinalDoom/gazelle-forum-games/issues"
},
"author": "FinalDoom",
"license": "ISC",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --reporter spec -r ts-node/register src/**/*.test.ts",
"build": "npx rollup --config rollup.config.js --bundleConfigAsCjs",
"watch": "npx rollup --config rollup.config.js --bundleConfigAsCjs --watch",
"serve": "node -r esm server.js",
"start": "node -r esm server.js",
"build:release": "npx rollup --config rollup.config.js --bundleConfigAsCjs --sourcemap 0 --file dist/release-$npm_package_version.user.js",
"version": "npm run build:release && pnpm dlx shx cp dist/release-$npm_package_version.user.js dist/gazelle-forum-games-eligibility-checker.user.js && git add -f dist/release-$npm_package_version.user.js -f dist/gazelle-forum-games-eligibility-checker.user.js"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/chai": "^5.0.1",
"@types/greasemonkey": "^4.0.7",
"@types/mocha": "^10.0.10",
"@types/test-console": "^2.0.3",
"chai": "^5.1.2",
"colorette": "^2.0.20",
"esm": "^3.2.25",
"limiter": "^2.1.0",
"loglevel": "^1.9.2",
"loglevel-plugin-prefix": "^0.8.4",
"mocha": "^11.0.1",
"rollup": "^4.30.1",
"rollup-plugin-scss": "^4",
"rollup-plugin-userscript-metablock": "^0.4.2",
"sass": "^1.83.1",
"serve": "^14.2.4",
"serve-handler": "^6.1.6",
"test-console": "^2.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"config": {
"port": "8124"
}
}