-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.02 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
{
"name": "@proofkit/typegen",
"version": "1.1.5",
"description": "",
"type": "module",
"main": "dist/esm/index.js",
"scripts": {
"dev": "pnpm build:watch",
"dev:ui": "concurrently -n \"web,api\" -c \"cyan,magenta\" \"pnpm -C web dev\" \"pnpm run dev:api\"",
"dev:api": "concurrently -n \"build,server\" -c \"cyan,magenta\" \"pnpm build:watch\" \"nodemon --watch dist/esm --delay 1 --exec 'node dist/esm/cli.js ui --port 3141 --no-open'\"",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --watch --config vitest.config.ts",
"test:e2e": "varlock run -- vitest run --config vitest.e2e.config.ts",
"typecheck": "tsc --noEmit",
"build": "pnpm -C web build && pnpm vite build && node scripts/build-copy.js && publint --strict",
"build:watch": "vite build --watch",
"ci": "pnpm run build && pnpm run test",
"lint": "biome check . --write",
"lint:summary": "biome check . --reporter=summary",
"generate:schema": "tsx scripts/generate-schema.ts",
"prepublishOnly": "pnpm run build"
},
"bin": {
"typegen": "./dist/esm/cli.js"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./config": {
"import": {
"types": "./dist/esm/types.d.ts",
"default": "./dist/esm/types.js"
}
},
"./webui-server": {
"import": {
"types": "./dist/esm/server/app.d.ts",
"default": "./dist/esm/server/app.js"
}
},
"./cli": {
"import": {
"types": "./dist/esm/cli.d.ts",
"default": "./dist/esm/cli.js"
}
},
"./src/types.ts": "./src/types.ts",
"./package.json": "./package.json"
},
"keywords": [
"proofkit",
"typegen",
"fmdapi",
"proofgeist",
"proofsh",
"filemaker",
"fmrest"
],
"files": [
"dist",
"src",
"stubs",
"bin"
],
"author": "",
"license": "ISC",
"homepage": "https://proofkit.proof.sh",
"repository": {
"type": "git",
"url": "git+https://github.com/proofsh/proofkit.git"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@commander-js/extra-typings": "^14.0.0",
"@hono/node-server": "^1.19.8",
"@hono/zod-validator": "^0.7.6",
"@proofkit/fmdapi": "workspace:*",
"@proofkit/fmodata": "workspace:*",
"@tanstack/vite-config": "^0.2.1",
"chalk": "5.4.1",
"commander": "^14.0.2",
"dotenv": "^16.6.1",
"execa": "^9.6.1",
"fast-xml-parser": "^5.3.3",
"fs-extra": "^11.3.3",
"hono": "^4.11.3",
"jsonc-parser": "^3.3.1",
"open": "^10.2.0",
"prettier": "^3.7.4",
"semver": "^7.7.3",
"ts-morph": "^26.0.0",
"ts-toolbelt": "^9.6.0",
"vite": "^6.4.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@tanstack/intent": "^0.0.19",
"@types/fs-extra": "^11.0.4",
"@types/semver": "^7.7.1",
"concurrently": "^8.2.2",
"nodemon": "^3.1.11",
"publint": "^0.3.16",
"type-fest": "^3.13.1",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}