-
Notifications
You must be signed in to change notification settings - Fork 467
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@typescript/dom-lib-generator",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">= 22.18.0"
},
"description": "Provides TypeScript types for the latest web APIs.",
"keywords": [
"typescript",
"web",
"api",
"dom",
"worker",
"worklet"
],
"scripts": {
"build": "node ./src/build.ts",
"baseline-accept": "cpx \"generated\\**\" baselines\\",
"lint": "eslint --max-warnings 0 src deploy/*.js scripts && tsc -p deploy/jsconfig.json",
"lint-fix": "eslint --max-warnings 0 src deploy/*.js scripts --fix",
"test": "npm run build && npm run lint && node ./src/test.ts && node ./unittests/index.js",
"changelog": "node ./src/changelog.ts",
"ts-changelog": "node ./deploy/versionChangelog.js",
"migrate": "node ./deploy/migrate.js",
"version": "npm i && node ./src/version.ts",
"generate": "npm run build && npm run baseline-accept"
},
"author": {
"name": "Kagami Sascha Rosylight",
"email": "[email protected]",
"url": "https://github.com/saschanaz"
},
"contributors": [
"Microsoft Corp."
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/TypeScript-DOM-lib-generator/"
},
"license": "Apache-2.0",
"type": "module",
"devDependencies": {
"@eslint/js": "^10",
"@mdn/browser-compat-data": "^7.0.0",
"@octokit/rest": "^22.0.0",
"@types/node": "^25.0.3",
"@types/prettier": "^3.0.0",
"@types/webidl2": "^24.4.3",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"@typescript/native-preview": "^7.0.0-dev.20251029.1",
"@webref/css": "^8.0.0",
"@webref/elements": "^2.5.0",
"@webref/events": "^1.18.6",
"@webref/idl": "^3.66.2",
"bcd-idl-mapper": "^3.0.1",
"cpx2": "^8.0.0",
"danger": "^13.0.4",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"jsonc-parser": "^3.3.1",
"kdljs": "^0.3.0",
"p-retry": "^7.1.0",
"prettier": "^3.6.2",
"print-diff": "^2.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8",
"webidl2": "^24.5.0"
},
"overrides": {
"typescript@*": "$typescript"
}
}