-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.62 KB
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
62
63
64
65
66
67
68
69
{
"name": "gtypee",
"version": "1.7.1",
"author": "dev.ejpespa@gmail.com",
"description": "TypeScript CLI for Google Workspace administration - manage Gmail, Drive, Calendar, and 15+ Google services from the command line",
"main": "dist/src/index.js",
"bin": {
"gtypee": "dist/bin/gtypee.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"dev": "tsx bin/gtypee.ts",
"test": "vitest run",
"test:parity": "vitest run test/parity/**/*.test.ts",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"cli",
"google",
"google-workspace",
"gmail",
"google-drive",
"google-calendar",
"gworkspace",
"admin",
"typescript",
"command-line",
"google-api",
"google-admin-sdk",
"oauth2",
"service-account"
],
"license": "ISC",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejpespa/gtypee.git"
},
"bugs": {
"url": "https://github.com/ejpespa/gtypee/issues"
},
"homepage": "https://github.com/ejpespa/gtypee#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"logo.svg"
],
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"googleapis": "^171.4.0",
"json5": "^2.2.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.3.0",
"semantic-release": "^24.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}