forked from tejaswiMinnu/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.92 KB
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
{
"private": true,
"type": "module",
"_comments": {
"dependencies": "Runtime dependencies must be kept to an absolute minimum for performance, ideally with no transitive dependencies",
"dependencies2": "All runtime and dev dependencies in this file, must be a superset of shared/package.json"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.1.3",
"@js-temporal/polyfill": "0.5.1",
"debug": "^4.4.3",
"js-yaml": "^4.1.0",
"markdown-table": "^3.0.4",
"marked": "^17.0.0",
"simple-git": "^3.27.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@actions/github-script": "github:actions/github-script",
"@eslint/js": "^10.0.0",
"@octokit/endpoint": "^11.0.0",
"@octokit/rest": "^22.0.0",
"@octokit/types": "^16.0.0",
"@octokit/webhooks-types": "^7.5.1",
"@tsconfig/node20": "^20.1.4",
"@types/debug": "^4.1.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.0",
"cross-env": "^10.1.0",
"eslint": "^10.0.0",
"fflate": "0.8.2",
"globals": "^17.0.0",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "^4.2.0",
"semver": "^7.7.1",
"tinybench": "^6.0.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.56.0",
"vitest": "^4.1.0"
},
"scripts": {
"check": "npm run test:ci && npm run lint && npm run format:check",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "cross-env DEBUG=eslint:eslint,eslint:linter eslint",
"lint:tsc": "tsc --build --verbose",
"format": "prettier . --write",
"format:check": "prettier . --check",
"format:check:ci": "prettier . --check --log-level debug",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter=verbose",
"validate": "npm run lint && npm run format:check && npm run test:ci"
},
"overrides": {
"undici@^5.0.0": "^6.0.0"
}
}