-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.3 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
{
"name": "media-mac",
"description": "The DeskThing Media MacOS App is a local audio control control source for the DeskThing",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm run build-server && node scripts/package.js",
"build-server": "esbuild server/index.ts --bundle --platform=node --outfile=dist/index.js",
"lint": "eslint .",
"postversion": "node -e \"const fs = require('fs'); const manifest = require('./deskthing/manifest.json'); const pkg = require('./package.json'); if (manifest.version !== pkg.version) { manifest.version = pkg.version; fs.writeFileSync('./deskthing/manifest.json', JSON.stringify(manifest, null, 2), 'utf8'); console.log('Updated manifest version to ' + pkg.version); }\""
},
"dependencies": {
"deskthing-server": "^0.9.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/archiver": "^6.0.3",
"@types/node": "^22.10.7",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.0.0",
"esbuild": "^0.19.2",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"ts-node": "^10.9.2",
"tsm": "^2.3.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1"
}
}