2018-02-20 21:48:29 +03:00
|
|
|
{
|
2021-03-06 00:08:22 +03:00
|
|
|
"name": "typescript-dom-lib-generator",
|
2021-06-29 15:30:48 +03:00
|
|
|
"version": "0.0.1",
|
2018-03-07 00:26:32 +03:00
|
|
|
"private": true,
|
2020-12-21 06:27:10 +03:00
|
|
|
"description": "Provides TypeScript types for the latest web APIs.",
|
2020-12-26 01:46:32 +03:00
|
|
|
"keywords": [
|
|
|
|
"typescript",
|
|
|
|
"web",
|
2021-01-05 06:45:07 +03:00
|
|
|
"api",
|
|
|
|
"dom",
|
|
|
|
"worker",
|
|
|
|
"worklet"
|
2020-12-26 01:46:32 +03:00
|
|
|
],
|
2018-02-20 21:48:29 +03:00
|
|
|
"scripts": {
|
2020-12-22 04:54:22 +03:00
|
|
|
"build": "tsc && node ./lib/build.js",
|
2024-08-06 21:30:03 +03:00
|
|
|
"baseline-accept": "cpx \"generated\\**\" baselines\\",
|
2021-08-01 20:24:47 +03:00
|
|
|
"lint": "eslint --max-warnings 0 src deploy/*.js && tsc -p deploy/jsconfig.json",
|
2024-08-06 20:42:07 +03:00
|
|
|
"lint-fix": "eslint --max-warnings 0 src deploy/*.js --fix",
|
2020-12-26 07:27:20 +03:00
|
|
|
"test": "npm run lint && npm run build && node ./lib/test.js && node ./unittests/index.js",
|
2021-06-12 17:45:02 +03:00
|
|
|
"changelog": "tsc && node ./lib/changelog.js",
|
2021-08-01 20:24:47 +03:00
|
|
|
"ts-changelog": "node ./deploy/versionChangelog.js",
|
|
|
|
"migrate": "node ./deploy/migrate.js",
|
2021-06-18 16:38:00 +03:00
|
|
|
"version": "npm i && tsc && node ./lib/version.js"
|
2018-02-20 21:48:29 +03:00
|
|
|
},
|
2020-12-21 15:38:22 +03:00
|
|
|
"author": {
|
|
|
|
"name": "Kagami Sascha Rosylight",
|
|
|
|
"email": "saschanaz@outlook.com",
|
|
|
|
"url": "https://github.com/saschanaz"
|
|
|
|
},
|
2021-06-29 15:30:48 +03:00
|
|
|
"contributors": [
|
|
|
|
"Microsoft Corp."
|
|
|
|
],
|
2020-12-21 15:38:22 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-06-29 15:30:48 +03:00
|
|
|
"url": "https://github.com/microsoft/TypeScript-DOM-lib-generator/"
|
2018-02-20 21:48:29 +03:00
|
|
|
},
|
2020-12-21 15:38:22 +03:00
|
|
|
"license": "Apache-2.0",
|
2020-12-12 01:23:46 +03:00
|
|
|
"type": "module",
|
2020-12-21 06:11:17 +03:00
|
|
|
"devDependencies": {
|
2024-04-15 21:59:13 +03:00
|
|
|
"@mdn/browser-compat-data": "^5.5.21",
|
2024-07-02 16:53:37 +03:00
|
|
|
"@octokit/rest": "^21.0.0",
|
2024-08-13 16:30:35 +03:00
|
|
|
"@types/node": "^22.2.0",
|
2024-05-09 01:02:20 +03:00
|
|
|
"@types/prettier": "^3.0.0",
|
2023-11-29 00:43:48 +03:00
|
|
|
"@types/webidl2": "^24.4.3",
|
2024-08-13 16:21:35 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
|
|
"@typescript-eslint/parser": "^8",
|
2024-04-15 21:59:13 +03:00
|
|
|
"@webref/css": "^6.12.7",
|
|
|
|
"@webref/elements": "^2.3.0",
|
|
|
|
"@webref/idl": "^3.46.1",
|
2023-11-29 00:43:48 +03:00
|
|
|
"bcd-idl-mapper": "^2.3.0",
|
2024-04-15 21:59:13 +03:00
|
|
|
"cpx2": "^7.0.1",
|
2024-05-09 01:02:20 +03:00
|
|
|
"danger": "^12.2.0",
|
2024-08-13 16:21:35 +03:00
|
|
|
"eslint": "^9.9.0",
|
2024-04-15 21:59:13 +03:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
|
|
"jsonc-parser": "^3.2.1",
|
2023-11-29 00:43:48 +03:00
|
|
|
"node-fetch": "^3.3.2",
|
2024-04-15 21:59:13 +03:00
|
|
|
"prettier": "^3.2.5",
|
2023-01-11 02:55:43 +03:00
|
|
|
"print-diff": "^2.0.0",
|
2024-08-06 20:15:12 +03:00
|
|
|
"typescript": "^5.6.0-dev.20240806",
|
2023-11-29 00:43:48 +03:00
|
|
|
"webidl2": "^24.4.1"
|
2024-07-20 23:16:25 +03:00
|
|
|
},
|
|
|
|
"overrides": {
|
|
|
|
"typescript@*": "$typescript"
|
2018-02-20 21:48:29 +03:00
|
|
|
}
|
|
|
|
}
|