forked from bubblelabai/BubbleLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "@bubblelab/shared-schemas",
"version": "0.1.255",
"type": "module",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE.txt"
],
"repository": {
"type": "git",
"url": "https://github.com/bubblelabai/BubbleLab.git",
"directory": "packages/shared-schemas"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup && tsc --emitDeclarationOnly",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"zod": "=3.25.76",
"@hono/zod-openapi": "=0.18.3"
},
"devDependencies": {
"@types/node": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"tsup": "^8.3.5",
"typescript": "^5.8.3",
"vitest": "^2.1.8"
}
}