-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
43
44
{
"name": "ts-nester",
"version": "1.0.6",
"description": "A TypeScript utility for converting nested JSON objects into TypeScript interfaces, optimized for i18n applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"index.ts",
"utils"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/phamquyetthang/ts-nester.git"
},
"keywords": [
"typescript",
"json-to-ts",
"interface-generator",
"i18n",
"typescript-utilities",
"json-interfaces"
],
"author": "phamquyetthang",
"license": "ISC",
"bugs": {
"url": "https://github.com/phamquyetthang/ts-nester/issues"
},
"homepage": "https://github.com/phamquyetthang/ts-nester#readme",
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "9.x",
"globals": "^15.8.0",
"prettier": "3.3.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.16.0"
},
"dependencies": {
"@types/node": "^20.14.2"
}
}