-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 872 Bytes
/
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
{
"name": "generate-json-schema",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umairabbasDev/generate-json-schema.git"
},
"bugs": {
"url": "https://github.com/umairabbasDev/generate-json-schema/issues"
},
"homepage": "https://github.com/umairabbasDev/generate-json-schema#readme",
"keywords": [
"compile",
"schema",
"json"
],
"author": "umairabbasDev <[email protected]>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"jest": "^29.5.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"files": [
"dist/**/*"
]
}