-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.66 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.66 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
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
96
97
{
"name": "@audiotool/nexus",
"version": "0.0.14",
"type": "module",
"license": "MIT",
"description": "Audiotool Nexus SDK",
"author": "Audiotool Inc.",
"homepage": "https://developer.audiotool.com/js-package-documentation/",
"repository": {
"type": "git",
"url": "https://github.com/audiotool/nexus.git"
},
"keywords": [
"audiotool",
"nexus",
"real-time",
"collaboration",
"synced document",
"DAW",
"music",
"production",
"audio"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js"
},
"./document": {
"types": "./dist/document.d.ts",
"import": "./dist/document.js"
},
"./entities": {
"types": "./dist/entities.d.ts",
"import": "./dist/entities.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js"
},
"./api": {
"types": "./dist/api.d.ts",
"import": "./dist/api.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "vite build && cp src/docs/README.md dist/README.md",
"pack": "npm pack --pack-destination dist/",
"dev": "vite build --watch",
"docs": "typedoc",
"test": "vitest run",
"test-docs": "cd docs && uv run python -m http.server",
"validator": "cd ../hermes && just wasm && cd - && cp ../hermes/document_validator_wasm/document_validator.wasm src/document/mock/wasm/document_validator.wasm",
"codegen": "buf generate --template codegen/proto.buf.gen.yaml && buf generate --template codegen/nexus.buf.gen.yaml",
"check": "tsc --noEmit"
},
"devDependencies": {
"@8hobbies/typedoc-plugin-plausible": "^2.2.0",
"@bufbuild/buf": "^1.56.0",
"@bufbuild/protoplugin": "1.10.0",
"@microsoft/api-documenter": "^7.26.32",
"@microsoft/api-extractor": "^7.52.11",
"@prettier/sync": "^0.6.1",
"@types/node": "^24.3.0",
"@types/toposort": "^2.0.7",
"@types/uuid": "^10.0.0",
"glob": "^11.0.3",
"tsx": "^4.0.0",
"typedoc": "^0.28.10",
"typedoc-plugin-mdn-links": "^5.0.8",
"typedoc-plugin-missing-exports": "^4.1.0",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^3.0.0",
"vite-tsconfig-paths": "^6.0.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@bufbuild/protobuf": "1.10.0",
"@connectrpc/connect": "^1.7.0",
"@connectrpc/connect-web": "^1.7.0",
"@connectrpc/connect-node": "^1.7.0",
"@types/js-cookie": "^3.0.6",
"js-cookie": "^3.0.5",
"toposort": "^2.0.2",
"utility-types": "^3.11.0",
"uuid": "^11.1.0"
}
}