-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "@nxht/typebox-extended-openapi",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/nxht/typebox-extended-openapi"
},
"keywords": ["typescript", "typebox", "json-schema", "openapi"],
"type": "module",
"main": "./dist/index.js",
"types": "./src/index.ts",
"files": ["src", "dist"],
"exports": {
"bun": "./src/index.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"scripts": {
"build": "bun tsup",
"attw": "bunx @arethetypeswrong/cli -P .",
"trace": "bunx typescript --noEmit --generateTrace trace && bunx @typescript/analyze-trace trace --force-millis 100",
"prepublishOnly": "bun run build",
"changelog": "bunx conventional-changelog-cli -p angular -i CHANGELOG.md -s",
"release": "bunx release-it"
},
"peerDependencies": {
"@sinclair/typebox": "^0.34.13"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@release-it/conventional-changelog": "^9.0.4",
"@types/bun": "latest",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}