-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 975 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
30
{
"name": "webextension-nanokvm-capture",
"version": "1.0.0",
"description": "A Chrome extension that adds screenshot and video recording capabilities to NanoKVM.",
"type": "module",
"scripts": {
"dev": "bun run scripts/watch.ts",
"build": "bun run scripts/build.ts",
"build:prod": "NODE_ENV=production bun run scripts/build.ts",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/chrome": "^0.0.254",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"bun-types": "latest",
"chokidar": "^4.0.3",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.0.0"
}
}