-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 943 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
38
39
40
41
{
"name": "dts-from-json",
"repository": {
"type": "git",
"url": "https://github.com/remojansen/dts-from-json.git"
},
"version": "1.0.1",
"description": "Command line utility to emit TypeScript type declaration files for JSON files",
"main": "./dist/index.js",
"bin": {
"dts-from-json": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"keywords": [
"json",
"typescript",
"declaration",
"type",
"definition",
"d.ts"
],
"author": "Remo H. Jansen",
"license": "MIT",
"dependencies": {
"change-case": "^5.4.4",
"json-to-ts": "^2.1.0",
"meow": "^13.2.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"@types/node": "^20.14.11"
}
}