-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
29 lines (29 loc) · 890 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
25
26
27
28
29
{
"name": "shlink",
"module": "bundle.mts",
"type": "module",
"dependencies": {
"@shlinkio/shlink-js-sdk": "^1.3.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@happy-dom/global-registrator": "^16.5.3",
"@types/bun": "^1.1.16",
"@types/chrome": "^0.0.293",
"@types/webextension-polyfill": "^0.12.1",
"concurrently": "^9.1.2",
"prettier": "^3.4.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun run bundle.mts",
"run:web-ext": "web-ext run",
"watch": "bun run concurrently --kill-others --success last --passthrough-arguments --names bun,web-ext 'bun run build --watch' 'bun run run:web-ext {@}' --",
"lint": "bun run prettier . --write",
"lint:check": "bun run prettier . --check",
"clean": "rm -rf dist",
"purge": "bun run clean; rm -rf node_modules"
}
}