-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "@convstack/service-sdk",
"version": "0.2.0",
"private": false,
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"src",
"dist",
"README.md",
"PUBLISHING.md"
],
"exports": {
".": "./src/index.ts",
"./auth": "./src/auth.ts",
"./types": "./src/types.ts",
"./manifest-schema": "./src/manifest-schema.ts",
"./users": "./src/users.ts",
"./server": "./src/server.ts",
"./registration": "./src/registration.ts",
"./vite-plugins": "./src/vite-plugins.ts",
"./openapi": "./src/openapi.ts",
"./handlers": "./src/handlers/index.ts",
"./permissions": "./src/permissions/index.ts",
"./db": "./src/db/index.ts",
"./response": "./src/response/index.ts",
"./bootstrap": "./src/bootstrap/index.ts",
"./vite": "./src/vite/index.ts",
"./manifest": "./src/manifest/index.ts",
"./manifest/fields": "./src/manifest/fields.ts",
"./manifest/sections": "./src/manifest/sections.ts",
"./openapi/export": "./src/openapi/export.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"openapi:export": "bun run scripts/export-openapi.ts",
"prepublishOnly": "bun run openapi:export && bun run typecheck"
},
"dependencies": {
"drizzle-orm": "1.0.0-beta.20-afec359",
"pg": "^8.20.0",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/bun": "^1.3.12",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"typescript": "^6.0.2",
"vite": "^8.0.8"
}
}