-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 2.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@soundworks/core",
"version": "4.0.0-alpha.29",
"description": "Open-source creative coding framework for distributed applications based on Web technologies",
"authors": [
"Benjamin Matuszewski",
"Sébastien Robaszkiewicz",
"Norbert Schnell"
],
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
"./client.js": {
"module": "./src/client/index.js",
"node": "./src/client/index.js",
"types": "./types/client/index.d.ts"
},
"./server.js": {
"node": "./src/server/index.js",
"types": "./types/server/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/collective-soundworks/soundworks.git"
},
"bugs": {
"url": "https://github.com/collective-soundworks/soundworks/issues"
},
"homepage": "https://soundworks.dev",
"keywords": [
"soundworks",
"creative-coding",
"music",
"full-stack",
"real-time",
"distributed-system"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"doc": "npm run types && rm -rf docs && jsdoc -c .jsdoc --verbose && cp -R misc/assets docs/",
"lint": "npx eslint src",
"test": "npx mocha tests/*/*.spec.js",
"test:only": "npx mocha",
"types": "rm -rf types && tsc",
"preversion": "node ./misc/scripts/generate-version-file.js $npm_new_version",
"postversion": "node ./misc/scripts/check-changelog.js && git commit -am \"$npm_new_version\" --allow-empty"
},
"dependencies": {
"@ircam/sc-utils": "^1.3.3",
"chalk": "^5.3.0",
"columnify": "^1.6.0",
"compression": "^1.7.1",
"express": "^4.19.2",
"fast-deep-equal": "^3.1.3",
"isomorphic-ws": "^5.0.0",
"keyv": "^4.5.4",
"keyv-file": "^0.3.1",
"lodash": "^4.17.21",
"pem": "^1.14.8",
"template-literal": "^1.0.4",
"uuid": "^9.0.1",
"ws": "^8.17.0"
},
"devDependencies": {
"@ircam/eslint-config": "^1.3.0",
"chai": "^5.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"docdash": "^2.0.2",
"dotenv": "^16.4.5",
"eslint": "^8.0.0",
"eslint-plugin-jsdoc": "^48.2.5",
"jsdoc": "^4.0.3",
"mocha": "^10.4.0",
"puppeteer": "^22.9.0",
"tcp-ping": "^0.1.1",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.5",
"utf-8-validate": "^5.0.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}