-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 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
{
"name": "@andrzejchm/notion-cli",
"version": "0.13.0",
"description": "Read Notion pages and databases from the terminal. Built for AI agents and developers.",
"keywords": [
"notion",
"cli",
"notion-api",
"ai-agent",
"markdown",
"database"
],
"author": "Andrzej Chm",
"license": "MIT",
"homepage": "https://github.com/andrzejchm/notion-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andrzejchm/notion-cli.git"
},
"bugs": {
"url": "https://github.com/andrzejchm/notion-cli/issues"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist/",
"docs/",
".agents/skills/using-notion-cli/",
"README.md"
],
"type": "module",
"bin": {
"notion": "dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format .",
"format:write": "biome format --write .",
"check": "biome check .",
"check:write": "biome check --write .",
"ci": "npm run typecheck && npm run check",
"test:integration": "vitest run --config vitest.config.integration.ts"
},
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"@notionhq/client": "^5.17.0",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@commander-js/extra-typings": "^14.0.0",
"@types/node": "^22",
"dotenv-cli": "^11.0.0",
"tsup": "^8.5.0",
"typescript": "~5.9.0",
"vitest": "^4.0.0"
}
}