-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.02 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
{
"name": "@toil/typebox-genx",
"description": "Code generation tool that extends `@sinclair/typebox-codegen` package with import functionality",
"homepage": "https://github.com/ilyhalight/typebox-genx",
"version": "0.1.0",
"license": "MIT",
"author": "Toil",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ilyhalight/typebox-genx",
"directory": "packages/shared"
},
"bugs": {
"url": "https://github.com/ilyhalight/typebox-genx/issues"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"require": "./dist/client.js",
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
},
"./types/*": {
"require": "./dist/types/*.js",
"import": "./dist/types/*.js",
"types": "./dist/types/*.d.ts"
}
},
"keywords": [
"typebox",
"codegen",
"genx",
"extended",
"import"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@toil/translate": "^1.0.6",
"@types/bun": "latest",
"eslint": "^9.21.0",
"eslint-plugin-oxlint": "^0.16.3",
"husky": "^9.1.7",
"oxlint": "^0.16.3",
"prettier": "^3.5.3",
"tsc-esm-fix": "^3.1.2",
"typedoc": "^0.28.1",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typescript-eslint": "^8.26.0"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@sinclair/typebox-codegen": "^0.11.0",
"ts-morph": "^26.0.0"
},
"scripts": {
"build:bun": "bun run ./scripts/build.ts",
"build:doc": "typedoc --options .config/typedoc.json --tsconfig tsconfig.build.json",
"build:all": "bun build:bun && bun build:doc",
"lint": "bunx oxlint --ignore-path=.oxlintignore && bunx eslint",
"prepare": "husky"
}
}