-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 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
{
"name": "@mesh-kit/core",
"version": "1.0.160",
"type": "module",
"exports": {
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js",
"require": "./dist/server/index.cjs"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js",
"require": "./dist/client/index.cjs"
},
"./client-utils": {
"types": "./dist/client-utils/index.d.ts",
"import": "./dist/client-utils/index.js",
"require": "./dist/client-utils/index.cjs"
}
},
"scripts": {
"build": "bun run build:prep && bun run build:server && bun run build:client && bun run build:client-utils",
"build:client": "tsup src/client/index.ts --format cjs,esm --dts --clean --minify --out-dir dist/client",
"build:prep": "rm -rf dist && mkdir dist && mkdir dist/server && mkdir dist/client && mkdir dist/client-utils",
"build:server": "tsup src/server/index.ts --format cjs,esm --dts --clean --minify --out-dir dist/server",
"build:client-utils": "tsup src/client-utils/index.ts --format cjs,esm --dts --clean --minify --out-dir dist/client-utils",
"test": "vitest"
},
"dependencies": {
"@types/pg": "^8.15.4",
"eventemitter3": "^5.0.1",
"fast-json-patch": "^3.1.1",
"ioredis": "^5.6.1",
"pg": "^8.16.3",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"tsup": "^8.4.0",
"vitest": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}