-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "json2typebox",
"version": "0.1.0",
"description": "Json to typebox schemas",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"docs:dev": "concurrently \"typedoc --watch\" \"vitepress dev docs\" ",
"docs:build": "typedoc && vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "dotenv release-it",
"release:ci": "dotenv release-it --ci",
"demo:web": "vite",
"demo:node": "node test/demo.node.js",
"test": "vitest",
"test:ui": "vitest --ui"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"json2typebox",
"typebox"
],
"author": {
"name": "hacxy",
"email": "hacxy.js@outlook.com",
"url": "https://github.com/hacxy"
},
"license": "MIT",
"homepage": "https://github.com/hacxy/json2typebox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hacxy/json2typebox.git"
},
"bugs": {
"url": "https://github.com/hacxy/json2typebox/issues"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@release-it/conventional-changelog": "^5.1.1",
"@types/node": "^20.12.7",
"@vitest/ui": "^1.5.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.56.0",
"globals": "^15.0.0",
"release-it": "^15.5.1",
"typescript": "5.4.5",
"typescript-eslint": "^7.6.0",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.3.1",
"vitest": "^1.5.0"
},
"dependencies": {
"@hacxy/json2ts": "^0.0.1",
"@sinclair/typebox-codegen": "^0.10.5"
}
}