-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.46 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
74
75
76
{
"name": "bandcamp-script-deluxe-edition",
"version": "1.38.1",
"description": "A discography player for bandcamp.com and manager for your played albums",
"keywords": [
"userscript",
"greasemonkey",
"tampermonkey",
"bandcamp"
],
"homepage": "https://github.com/cvzi/Bandcamp-script-deluxe-edition",
"repository": {
"type": "git",
"url": "github:cvzi/Bandcamp-script-deluxe-edition"
},
"bugs": {
"url": "https://github.com/cvzi/Bandcamp-script-deluxe-edition/issues",
"email": "cuzi@openmail.cc"
},
"author": "cuzi",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup --config rollup.config.mjs",
"watch": "npx rollup --config rollup.config.mjs --watch",
"serve": "node server.js",
"start": "node server.js",
"testserve": "node server.js --test",
"build:release": "npx rollup --config rollupRelease.config.mjs",
"build:singledomain": "npx rollup --config rollupSingleDomain.config.mjs",
"version": "npm run build:release && git add dist/release-$npm_package_version.user.js"
},
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"dist/",
"!.babelrc.js"
],
"globals": [
"GM",
"GM_registerMenuCommand",
"crypto"
]
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-syntax-import-assertions": "^7.27.1",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"baseline-browser-mapping": "^2.10.40",
"clean-css": "^5.3.3",
"colorette": "^2.0.20",
"eslint": "^9.39.1",
"esm": "^3.2.25",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-window": "^2.2.7",
"rollup": "^4.52.5",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-userscript-metablock": "^0.4.3",
"serve": "^14.2.5",
"standard": "^17.1.2"
},
"dependencies": {
"lz-string": "^1.5.0"
},
"config": {
"port": "8125"
}
}