forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@rushstack/typings-generator",
"version": "0.10.36",
"description": "This library provides functionality for automatically generating typings for non-TS files.",
"keywords": [
"dts",
"typings",
"generate"
],
"main": "lib/index.js",
"typings": "dist/typings-generator.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "libraries/typings-generator"
},
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean"
},
"dependencies": {
"@rushstack/node-core-library": "workspace:*",
"chokidar": "~3.4.0",
"glob": "~7.0.5"
},
"devDependencies": {
"@rushstack/eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-node-rig": "workspace:*",
"@types/glob": "7.1.1",
"@types/node": "14.18.36"
},
"peerDependencies": {
"@types/node": "*"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}