-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 937 Bytes
/
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
{
"name": "kwin-pretty-maximize",
"version": "1.0.0",
"description": "Offers an intermediate customizable stage of maximization",
"main": "contents/code/main.js",
"scripts": {
"lint": "tsc --noEmit",
"compile": "esbuild --bundle contents/src/main.ts --outfile=contents/code/main.js --format=esm --platform=neutral",
"package": "scripts/package.sh",
"install": "[ $npm_command != 'run-script' ] || scripts/install.sh",
"run": "scripts/start.sh",
"publish": "npm run lint && npm run compile && npm run package",
"start": "npm run lint && npm run compile && npm run package && npm run install && npm run run",
"uninstall": "scripts/uninstall.sh",
"update-metadata": "scripts/update_metadata.sh"
},
"author": "arbitar <[email protected]>",
"license": "GPL-2.0-only",
"devDependencies": {
"esbuild": "^0.15.14",
"kwin-types": "^0.1.1",
"typescript": "^4.9.3"
}
}