-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
48
49
50
51
52
{
"name": "def-gen",
"version": "0.1.5",
"description": "A powerful tool to infer types from JavaScript values and generate code from these inferred types.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"keywords": [
"typescript",
"definitions",
"schema",
"zod",
"valibot",
"generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/veloii/def-gen.git"
},
"author": "Aria (veloii)",
"license": "MIT",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"bin": {
"def-gen": "./dist/cli.js"
},
"scripts": {
"cli": "pnpm build && ./dist/cli.js",
"test": "vitest --coverage",
"build": "pkgroll"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.6.0",
"pkgroll": "^2.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"cleye": "^1.3.2"
}
}