|
2 | 2 | "name": "monarch-kit", |
3 | 3 | "version": "0.1.0", |
4 | 4 | "description": "Development kit for Monarch ORM", |
| 5 | + "private": false, |
5 | 6 | "type": "module", |
6 | 7 | "bin": { |
7 | 8 | "monarch": "./dist/index.js" |
8 | 9 | }, |
| 10 | + "exports": { |
| 11 | + "./config": { |
| 12 | + "types": "./dist/config.d.ts", |
| 13 | + "default": "./dist/config.js" |
| 14 | + } |
| 15 | + }, |
9 | 16 | "scripts": { |
10 | 17 | "cli:build": "tsup cli/index.ts --clean --format esm", |
11 | 18 | "cli:dev": "tsx cli/index.ts", |
| 19 | + "lib:build": "tsup lib/config.ts --dts --format esm", |
12 | 20 | "ui:build": "react-router build", |
13 | 21 | "ui:dev": "react-router dev --port 6543", |
14 | 22 | "ui:preview": "react-router-serve ./dist/ui/server/index.js", |
15 | | - "build": "npm run cli:build && npm run ui:build", |
| 23 | + "build": "npm run cli:build && npm run lib:build && npm run ui:build", |
16 | 24 | "start": "node dist/index.js", |
17 | 25 | "release": "npm run build && changeset publish", |
18 | 26 | "check": "npm run lint && npm run format && react-router typegen && tsc", |
|
47 | 55 | "dependencies": { |
48 | 56 | "@clack/prompts": "^0.10.0", |
49 | 57 | "@radix-ui/react-checkbox": "^1.1.4", |
| 58 | + "@radix-ui/react-collapsible": "^1.1.3", |
50 | 59 | "@radix-ui/react-dialog": "^1.1.6", |
51 | 60 | "@radix-ui/react-dropdown-menu": "^2.1.6", |
52 | 61 | "@radix-ui/react-menubar": "^1.1.6", |
|
56 | 65 | "@react-router/express": "^7.2.0", |
57 | 66 | "@react-router/node": "^7.2.0", |
58 | 67 | "@react-router/serve": "^7.2.0", |
| 68 | + "@tanstack/react-table": "^8.21.2", |
59 | 69 | "class-variance-authority": "^0.7.1", |
60 | 70 | "clsx": "^2.1.1", |
61 | 71 | "cmdk": "1.0.0", |
62 | 72 | "commandstruct": "^0.3.1", |
63 | 73 | "compression": "^1.8.0", |
| 74 | + "dotenv": "^16.4.7", |
64 | 75 | "express": "^4.21.2", |
65 | 76 | "glob": "^11.0.1", |
66 | 77 | "hollywood-di": "^0.6.1", |
|
0 commit comments