-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 833 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 833 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
{
"name": "tsc-meetings",
"private": true,
"version": "1.0.0",
"description": "Technical Steering Committee meeting notes, proposals, and related information",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"generate:transcript": "node ./scripts/generate-transcript.js",
"generate:contributor-pool": "node ./scripts/generate-contributor-pool.js"
},
"repository": "eslint/tsc-meetings",
"funding": "https://opencollective.com/eslint",
"license": "MIT",
"engines": {
"node": "^22.13.0 || >=24"
},
"dependencies": {
"discord-transcript-generator": "^1.1.1",
"moment": "^2.30.1"
},
"devDependencies": {
"eslint": "^9.39.3",
"eslint-config-eslint": "^13.0.0",
"prettier": "3.8.1"
}
}