-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.33 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.33 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
{
"name": "ccmodmanager",
"version": "1.1.3",
"scripts": {
"start": "esbuild --target=es2018 --format=esm --platform=node --bundle --sourcemap=inline --outfile=plugin.js src/plugin.ts",
"watch": "esbuild --target=es2018 --format=esm --platform=node --bundle --sourcemap=inline --watch --outfile=plugin.js src/plugin.ts",
"build": "esbuild --target=es2018 --format=esm --platform=node --bundle --outfile=plugin.js --minify-syntax --minify-whitespace src/plugin.ts",
"format": "prettier ./src -w; prettier ./assets -w --tab-width 4 --no-semi --print-width 500 --bracket-same-line",
"types": "tsc --noEmit false --outDir types --emitDeclarationOnly true --declaration --isolatedModules false"
},
"license": "GPLv3",
"devDependencies": {
"@types/chrome": "^0.1.1",
"@types/jquery": "^3.5.30",
"@types/node": "^11.15.54",
"@types/semver": "^7.5.8",
"ccmoddb": "github:CCDirectLink/CCModDB",
"crosscode-demonizer": "github:krypciak/crosscode-demonizer",
"esbuild": "^0.28.0",
"fflate": "^0.8.2",
"fuzzysort": "^2.0.4",
"marked": "=12.0.2",
"prettier": "3.8.2",
"rimraf": "^3.0.2",
"typescript": "^6.0.2",
"ultimate-crosscode-typedefs": "github:krypciak/ultimate-crosscode-typedefs"
}
}