-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "dts-generate",
"version": "2.0.0",
"description": "Generate TypeScript definitions for anything",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/index.*"
],
"scripts": {
"prepublishOnly": "del dist; tsc --declaration",
"start": "node --require ts-node/register/transpile-only --require node-env-dev src/test.ts",
"watch": "cross-env NODE_ENV=development nodemon --quiet --watch src --ext ts --exec 'node --inspect --require ts-node/register/transpile-only --require node-env-dev' src/test.ts"
},
"dependencies": {
"deepmerge": "^4.2.2",
"dts-gen": "^0.6.0",
"is-plain-obj": "^3.0.0",
"pascal-case": "^3.1.2",
"utils-merge": "^1.0.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/lodash": "^4.14.167",
"@types/mri": "^1.1.0",
"@types/node": "^14.14.21",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
"fs-extra": "^9.0.1",
"mri": "^1.1.6",
"node-env-dev": "^1.9.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"keywords": [
"declarations",
"definitions",
"dts",
"generate",
"generation",
"generator",
"ts",
"type",
"types",
"typescript"
],
"license": "Unlicense",
"author": "Robert Laverty <[email protected]> (https://github.com/roblav96)",
"homepage": "https://github.com/roblav96/dts-generate#readme",
"repository": "github:roblav96/dts-generate",
"bugs": "https://github.com/roblav96/dts-generate/issues"
}