-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 921 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 921 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "gamma-ai",
"version": "0.1.2",
"description": "CLI tool for the Gamma API - create presentations, documents, and more from the terminal",
"type": "module",
"bin": {
"gamma": "./dist/cli.js"
},
"files": [
"dist",
"skills",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/ibbybuilds/gamma-cli"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"test": "npm run build && node --test test/*.test.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"gamma",
"cli",
"presentation",
"ai",
"slides",
"document",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^13.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.3.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}