-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 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
{
"name": "@coastal-programs/notion-cli",
"version": "6.2.0",
"description": "Unofficial Notion CLI optimized for automation and AI agents. Single-binary Go implementation with intelligent caching, retry logic, structured error handling.",
"author": "Jake Schepis <jake@coastalprograms.com>",
"bin": {
"notion-cli": "./bin/notion-cli.js"
},
"homepage": "https://github.com/Coastal-Programs/notion-cli#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Coastal-Programs/notion-cli.git"
},
"files": [
"/bin",
"/install.js"
],
"scripts": {
"postinstall": "node install.js",
"build": "make build",
"test": "make test",
"lint": "make lint",
"release": "make release"
},
"optionalDependencies": {
"@coastal-programs/notion-cli-darwin-arm64": "6.2.0",
"@coastal-programs/notion-cli-darwin-x64": "6.2.0",
"@coastal-programs/notion-cli-linux-x64": "6.2.0",
"@coastal-programs/notion-cli-linux-arm64": "6.2.0",
"@coastal-programs/notion-cli-win32-x64": "6.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/Coastal-Programs/notion-cli/issues",
"email": "jake@coastalprograms.com"
},
"keywords": [
"notion",
"cli",
"notion-api",
"notion-cli",
"ai-agents",
"automation",
"productivity",
"database",
"workspace",
"golang",
"json-envelope",
"command-line",
"developer-tools"
]
}