-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.23 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@grapity/grapity",
"version": "0.5.0",
"type": "module",
"description": "grapity - API spec registry and compatibility guardian",
"license": "Apache-2.0",
"homepage": "https://grapity.dev/docs/cli-reference/init",
"repository": {
"type": "git",
"url": "https://github.com/grapitydev/grapity"
},
"bin": {
"grapity": "./bin/grapity"
},
"main": "./dist/cli/index.js",
"types": "./dist/cli/index.d.ts",
"exports": {
".": {
"import": "./dist/cli/index.js",
"types": "./dist/cli/index.d.ts"
},
"./registry": {
"import": "./dist/registry/index.js",
"types": "./dist/registry/index.d.ts"
},
"./registry/serve": {
"import": "./dist/registry/serve.js",
"types": "./dist/registry/serve.d.ts"
},
"./hub": {
"import": "./dist/hub/index.js",
"types": "./dist/hub/index.d.ts"
},
"./hub/serve": {
"import": "./dist/hub/serve.js",
"types": "./dist/hub/serve.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./migrations/sqlite": "./drizzle/migrations/sqlite",
"./migrations/pg": "./drizzle/migrations/pg"
},
"files": [
"dist",
"drizzle/migrations",
"bin"
],
"scripts": {
"build": "bun run build:core && bun run build:registry && bun run build:hub && bun run build:cli",
"build:core": "tsup --config tsup.core.config.ts",
"build:registry": "tsup --config tsup.registry.config.ts",
"build:hub": "vite build && tsup --config tsup.hub.config.ts",
"build:cli": "tsup --config tsup.cli.config.ts",
"dev": "bun run src/cli/index.ts",
"dev:hub": "vite",
"dev:registry": "node --import tsx/esm src/registry/serve.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"generate": "bun run scripts/generate-types.ts",
"prepublishOnly": "bun run build"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@hono/node-server": "^2.0.4",
"better-sqlite3": "^12.10.0",
"chalk": "^5.4.0",
"commander": "^13.1.0",
"drizzle-orm": "^0.45.0",
"hono": "^4.12.22",
"jose": "^6.2.3",
"js-yaml": "^4.1.0",
"lucide-react": "^0.577.0",
"ora": "^9.0.0",
"pg": "^8.16.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.4.0",
"shiki": "^4.2.0",
"uuid": "^14.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@testcontainers/postgresql": "^11.14.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.2.0",
"@types/better-sqlite3": "^7.6.0",
"@types/bun": "^1.3.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.4.0",
"autoprefixer": "^10.4.21",
"drizzle-kit": "^0.31.0",
"happy-dom": "^17.4.0",
"openapi-typescript": "^7.13.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.0.0",
"testcontainers": "11.14.0",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vite": "^6.3.0"
}
}