-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.53 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
{
"name": "json2typebox",
"type": "module",
"version": "0.1.1",
"description": "Json to typebox schemas",
"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"
},
"keywords": [
"typescript",
"json2typebox",
"typebox"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"release": "bump",
"test": "vitest run",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "eslint --fix"
},
"dependencies": {
"@hacxy/json2ts": "^0.3.0",
"@sinclair/typebox-codegen": "^0.10.5"
},
"devDependencies": {
"@hacxy/bump": "^0.1.0",
"@hacxy/eslint-config": "^0.4.0",
"@types/node": "^20.12.7",
"@vitest/ui": "^1.5.0",
"eslint": "^9.31.0",
"lint-staged": "^16.1.2",
"simple-git-hooks": "^2.13.0",
"typescript": "5.4.5",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.3.1",
"vitest": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/commit-msg.mjs"
},
"lint-staged": {
"*": [
"npm run lint:staged"
]
}
}