-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.7 KB
/
package.json
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
{
"name": "tpac-breakouts",
"version": "0.9.0",
"description": "A set of tools to organize breakouts during W3C TPAC event. The package should only be useful for that purpose!",
"license": "SEE LICENSE IN 'LICENSE' file",
"author": {
"name": "tidoust",
"email": "[email protected]"
},
"contributors": [
{
"name": "ianbjacobs",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/w3c/tpac-breakouts.git"
},
"bugs": {
"url": "https://github.com/w3c/tpac-breakouts/issues"
},
"files": [
"tools/"
],
"bin": {
"tpac-breakouts": "./tools/cli.mjs",
"add-minutes": "./tools/add-minutes.mjs",
"create-recording-pages": "./tools/create-recording-pages.mjs",
"init-repo-labels": "./tools/init-repo-labels.mjs",
"init-room-zoom": "./tools/init-room-zoom.mjs",
"list-chairs": "./tools/list-chairs.mjs",
"minutes-to-w3c": "./tools/minutes-to-w3c.mjs",
"setup-irc": "./tools/setup-irc.mjs",
"truncate-recording": "./tools/truncate-recording.mjs"
},
"scripts": {
"test": "mocha",
"appscript-pull": "clasp pull",
"appscript-push": "clasp push",
"appscript-bundle": "rollup tools/appscript/main.mjs --file tools/appscript/bundle.js --no-treeshake",
"appscript": "npm run appscript-pull && npm run appscript-bundle && npm run appscript-push"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^12.0.0",
"googleapis": "^144.0.0",
"irc": "^0.5.2",
"puppeteer": "^23.6.1",
"seedrandom": "^3.0.5",
"webvtt-parser": "^2.2.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"mocha": "^10.7.3",
"@google/clasp": "^2.4.2",
"rollup": "^4.24.3"
}
}