-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 KB
/
package.json
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
{
"name": "arke-zod",
"version": "0.0.5",
"description": "Turn arke structs into zod schemas",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"dev": "tsup --watch",
"build": "tsup"
},
"author": "",
"license": "ISC",
"dependencies": {
"@arkejs/client": "^2.11.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"configstore": "^7.0.0",
"fs-extra": "^11.2.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"ora": "^8.1.0",
"prompts": "^2.4.2",
"ts-morph": "^23.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@types/configstore": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.kebabcase": "^4.1.9",
"@types/node": "^22.5.2",
"@types/prompts": "^2.4.9",
"tsup": "^8.2.4",
"type-fest": "^4.26.0",
"typescript": "5.4.5"
}
}