-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.29 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": "outline-doc",
"version": "0.1.1",
"description": "npm-installable command line client for Outline documents, collections, search, and API calls",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/simplebytes-com/outline-doc-cli.git"
},
"bugs": {
"url": "https://github.com/simplebytes-com/outline-doc-cli/issues"
},
"homepage": "https://github.com/simplebytes-com/outline-doc-cli#readme",
"bin": {
"outline-doc": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod 755 dist/cli.js",
"dev": "tsx src/cli.ts",
"check": "tsc --noEmit",
"prepack": "npm run build",
"prepublishOnly": "npm run check && npm run build",
"test": "npm run build && node test/normalize-base-url.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@inquirer/prompts": "^8.0.1",
"commander": "^14.0.2"
},
"devDependencies": {
"@types/node": "^24.10.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"keywords": [
"outline",
"outline-api",
"cli",
"documents",
"wiki",
"knowledge-base"
],
"license": "MIT",
"author": "SimpleBytes <hello@simplebytes.com>",
"publishConfig": {
"access": "public"
}
}