-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "google-api-typings-generator",
"description": "Google API Typescript typings definitions generator",
"repository": {
"type": "git",
"url": "https://github.com/Maxim-Mazurok/google-api-typings-generator.git"
},
"license": "MIT",
"author": {
"name": "Maxim Mazurok",
"email": "[email protected]",
"url": "https://maxim.mazurok.com"
},
"type": "module",
"scripts": {
"apis-sync-helper": "npx tsx bin/apis-sync-helper.ts",
"auto-publish": "npx tsx bin/auto-publish/index.ts",
"precheck": "prettier --check .",
"check": "gts check",
"clean": "gts clean",
"cspell": "npx tsx bin/cspell.ts",
"dtslint": "node node_modules/@definitelytyped/dtslint/",
"prefix": "prettier --write .",
"fix": "gts fix",
"postinstall": "patch-package",
"lint": "npx tsx bin/lint.ts ./types",
"ncu": "npx -y npm-check-updates -u --doctor",
"start": "npx tsx src/cli.ts --out ./types",
"poststart": "prettier --ignore-path --write types/**/*",
"start-dt": "npx -y rimraf ~/DefinitelyTyped/types/gapi.client.* && npx tsx src/dt/cli.ts --out ~/DefinitelyTyped/types",
"pretest": "npm run type-check && npm run cspell",
"test": "vitest --run",
"posttest": "npm run check",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@definitelytyped/dtslint": "0.2.10",
"@definitelytyped/eslint-plugin": "0.1.4",
"@expo/spawn-async": "^1.7.2",
"@octokit/rest": "^21.1.0",
"@types/dedent": "^0.7.2",
"@types/dot": "^1.1.7",
"@types/gapi.client.discovery-v1": "^0.0.4",
"@types/lodash": "^4.17.14",
"@types/n-readlines": "^1.0.6",
"@types/node": "^22.12.0",
"@types/validate-npm-package-name": "^4.0.2",
"commander": "^13.1.0",
"dedent": "^1.5.3",
"deep-sort-object": "^1.0.2",
"dot": "^1.1.3",
"eslint-plugin-deprecation": "^3.0.0",
"get-port": "^7.1.0",
"get-proxy-settings": "^0.1.13",
"got": "^14.4.5",
"gts": "^6.0.2",
"hpagent": "^1.2.0",
"latest-version": "^9.0.0",
"lodash": "^4.17.21",
"n-readlines": "^1.0.1",
"nock": "^14.0.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"prettier-plugin-packagejson": "^2.5.8",
"semver": "^7.6.3",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"validate-npm-package-name": "^6.0.0",
"vitest": "^3.0.4"
},
"engines": {
"node": "22.13.1",
"npm": "10.9.2"
},
"dependencyComments": {
"@definitelytyped/dtslint": "relies on @definitelytyped/eslint-plugin, update them together",
"@definitelytyped/eslint-plugin": "needed for @definitelytyped/dtslint, update them together"
}
}