-
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) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "@dotbrains/notion-cli",
"version": "1.0.1",
"description": "CLI for the Notion API — search pages, list users, view activity",
"license": "PolyForm-Shield-1.0.0",
"author": "dotbrains",
"repository": {
"type": "git",
"url": "https://github.com/dotbrains/notion-cli.git"
},
"keywords": [
"notion",
"cli",
"knowledge-base",
"pages",
"api"
],
"main": "src/cli.js",
"bin": {
"notion": "./dist/notion"
},
"files": [
"dist"
],
"scripts": {
"start": "node src/cli.js",
"build": "esbuild ./src/cli.js --bundle --platform=node --target=node18 --outfile=dist/notion && chmod +x dist/notion",
"lint": "oxlint src/",
"test": "node --test test/*.test.js",
"test:coverage": "c8 --check-coverage --branches 90 --functions 75 --lines 60 node --test test/*.test.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^14.0.3"
},
"devDependencies": {
"c8": "^10.1.0",
"esbuild": "^0.27.4",
"oxlint": "^0.16.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}