-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.89 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@ircam/comote-helpers",
"version": "0.3.4",
"description": "Server component & utilities for the CoMote application",
"authors": [
],
"license": "BSD-3-Clause",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ircam-ismm/comote-helpers"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./src"
},
"scripts": {
"api": "jsdoc-to-readme --src src/server.js src/qrcode.js --heading-depth 4",
"build": "npm run clean && babel src --out-dir .",
"clean": "rm -f server.js qrcode.js",
"doc": "npm run api && npm run toc",
"max:build-server": "esbuild ./max/CoMote/patchers/comote-connect/server.js --bundle --format=cjs --platform=node --external:max-api --outfile=max/CoMote/patchers/comote-connect-server.cjs",
"max:build-client": "esbuild ./max/CoMote/patchers/comote-connect/client.js --bundle --outfile=max/CoMote/patchers/comote-connect-public/comote-connect-client.js",
"max:build-webview-server": "esbuild ./max/CoMote/patchers/webview-server/server.js --bundle --format=cjs --platform=node --external:max-api --outfile=max/CoMote/patchers/webview-server.cjs",
"max:build": "npm run max:build-server && npm run max:build-client && npm run max:build-webview-server",
"prepublishOnly": "npm run build",
"preversion": "npm run build && npm run max:build",
"toc": "markdown-toc -i README.md --maxdepth 3"
},
"dependencies": {
"assign-deep": "^1.0.1",
"clone-deep": "^4.0.1",
"debug": "^4.3.1",
"node-osc": "^7.0.0",
"portfinder": "^1.0.32",
"qrcode": "^1.5.0",
"systeminformation": "^5.11.15",
"utf-8-validate": "^5.0.9",
"ws": "^8.6.0"
},
"devDependencies": {
"esbuild": "^0.23.0",
"jsdoc-to-readme": "^1.0.2",
"lit": "^3.1.4",
"markdown-toc": "^1.2.0"
}
}