-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 936 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 936 Bytes
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
{
"name": "tc39-dataset",
"private": true,
"description": "TC39 Proposals latest status",
"license": "UNLICENSE",
"author": "tc39",
"type": "module",
"scripts": {
"make-scheme": "node runner-dist/schema.js",
"make-dataset": "node runner-dist/index.js",
"build": "tsc -p ./tsconfig.json",
"start": "tsc -p ./tsconfig.json -w"
},
"dependencies": {
"@octokit/rest": "^21.1.1",
"@octokit/types": "^14.0.0",
"cheerio": "^1.0.0",
"lodash-es": "^4.17.21",
"markdown-it": "^14.1.0",
"parse-github-url": "^1.0.3"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^12.0.1",
"@types/cheerio": "^0.22.35",
"@types/lodash-es": "^4.17.12",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.14.1",
"@types/node-fetch": "^2.6.12",
"@types/parse-github-url": "^1.0.3",
"json-schema-to-typescript": "^15.0.4",
"typescript": "^5.8.3"
}
}