-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "@sinclair/typebox-codegen",
"version": "0.10.5",
"description": "Code Generation Tools for TypeBox",
"main": "index.js",
"keywords": [
"typebox",
"codegen"
],
"scripts": {
"build": "hammer task build",
"clean": "hammer task clean",
"format": "hammer task format",
"publish": "hammer task publish",
"publish:dev": "hammer task publish_dev",
"start": "hammer task start",
"test": "hammer task test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinclairzx81/typebox-codegen.git"
},
"author": "sinclairzx81",
"license": "MIT",
"homepage": "https://github.com/sinclairzx81/typebox-codegen#readme",
"devDependencies": {
"@sinclair/hammer": "^0.17.2",
"@types/node": "^18.15.11",
"@types/prettier": "^2.7.2"
},
"dependencies": {
"@sinclair/typebox": "^0.33.1",
"prettier": "^2.8.7",
"typescript": "^5.4.5"
},
"prettier": {
"printWidth": 240,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}