-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "docbase",
"version": "0.5.11",
"type": "module",
"bin": "./dist/cli/index.js",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js",
"require": "./dist/lib/index.js"
},
"./server": {
"types": "./dist/main/index.d.ts",
"import": "./dist/main/index.js",
"require": "./dist/main/index.js"
},
"./client": {
"import": "./dist/client/client.gen.ts",
"require": "./dist/client/client.gen.ts"
},
"./sdk": {
"import": "./dist/client/index.ts",
"require": "./dist/client/index.ts"
}
},
"repository": {
"url": "https://github.com/docbase-cc/docbase"
},
"homepage": "https://docbase.cc",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run ./build.ts",
"dev": "bun run ./dev.ts",
"start": "bun run ./dist/main/main.js",
"compile": "bun run ./compile.ts"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/bun": "^1.2.15",
"@types/fs-extra": "^11.0.4",
"adm-zip": "^0.5.16",
"chalk": "^5.4.1",
"concurrently": "^9.1.2",
"es-toolkit": "^1.39.3",
"fs-extra": "^11.3.0",
"ky": "^1.8.1",
"rollup": "^4.42.0",
"rollup-plugin-dts": "^6.2.1"
},
"dependencies": {
"@hey-api/client-fetch": "^0.12.0"
},
"files": [
"./dist/cli/**/*",
"./dist/client/**/*",
"./dist/lib/**/*",
"./dist/main/index*",
"./dist/main/chunk*",
"./dist/docker-compose.yaml"
]
}