forked from MariusAlch/json-to-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nilefy-json-to-ts",
"version": "1.8.5",
"description": "This is the fork of the original json-to-ts package, modified to fit in Nilefy",
"keywords": [
"typescript",
"ts",
"convert",
"json",
"util",
"lib",
"types"
],
"main": "./dist/nilefy-json-to-ts.cjs",
"module": "./dist/nilefy-json-to-ts.mjs",
"exports": {
".": {
"require": "./dist/nilefy-json-to-ts.cjs",
"import": "./dist/nilefy-json-to-ts.mjs",
"types": "./dist/index.d.ts"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf ./build && tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts && copyfiles ./package.json build",
"build:test": "rm -rf ./build && tsc",
"start": "nodemon -e ts -w src -x 'ts-node src/index.ts'",
"test": "vitest"
},
"author": "https://github.com/mariusalch",
"repository": {
"type": "git",
"url": "https://github.com/nilefy/json-to-ts"
},
"bugs": {
"url": "https://github.com/nilefy/json-to-ts/issues"
},
"license": "ISC",
"dependencies": {
"hash.js": "^1.0.3",
"pluralize": "^3.1.0"
},
"devDependencies": {
"@types/mocha": "2.2.40",
"@types/node": "^7.0.12",
"@types/pluralize": "^0.0.27",
"copyfiles": "^2.4.1",
"dts-bundle-generator": "^9.4.0",
"mocha": "^6.1.4",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.5.0"
}
}