-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.15 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
{
"name": "wgutils",
"version": "1.0.0",
"description": "Tools for managing working groups",
"main": "dist/index.js",
"bin": {
"wgutils": "dist/cli.js"
},
"scripts": {
"wgutils": "node dist/cli.js",
"watch": "tsc --watch",
"build": "tsc",
"prepack": "tsc",
"version": "node scripts/postversion.mjs && git add src/version.ts",
"test": "true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphql/wgutils.git"
},
"keywords": [
"GraphQL",
"working",
"group",
"wg",
"tools",
"utils",
"helpers",
"schedule",
"meeting",
"agenda"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql/wgutils/issues"
},
"homepage": "https://github.com/graphql/wgutils#readme",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.0",
"@types/yargs": "^17.0.32",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"date-fns": "^2",
"date-fns-tz": "^2.0.0",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"files": [
"dist"
]
}