This repository was archived by the owner on Aug 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.98 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.98 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
{
"name": "patchcord-userscript",
"version": "1.2.3",
"description": "Userscript for adding useful functionality to Patchcord.",
"keywords": [
"userscript",
"greasemonkey",
"tampermonkey",
"rollup",
"typescript",
"react"
],
"homepage": "https://github.com/patchcordhn/patchcord-userscript",
"funding": "https://github.com/patchcordhn/patchcord-userscript/funding_links?fragment=1",
"repository": {
"type": "git",
"url": "github:patchcordhn/patchcord-userscript"
},
"bugs": {
"url": "https://github.com/patchcordhn/patchcord-userscript/issues"
},
"author": "cuzi",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup --config rollup.config.js",
"watch": "npx rollup --config rollup.config.js --watch",
"serve": "node -r esm server.js",
"start": "node -r esm server.js",
"build:release": "npx rollup --config rollup.config.js --sourcemap 0 --file dist/release-$npm_package_version.user.js",
"build:release:win32": "npx rollup --config rollup.config.js --sourcemap 0 --file dist\\release-%npm_package_version%.user.js",
"version": "npm run build:release && git add dist/release-$npm_package_version.user.js",
"prepublishOnly": "npm run build:release && git add dist/release-$npm_package_version.user.js"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/react": "^18.0.9",
"colorette": "^2.0.19",
"esm": "^3.2.25",
"rollup": "^2.78.1",
"rollup-plugin-userscript-metablock": "^0.3.1",
"serve": "^13.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"config": {
"port": "8124"
}
}