@ideaspaces/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +113 -0
- package/bundle/ideaspaces.js +13563 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ideaspaces/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "IdeaSpaces CLI — persistent, searchable knowledge from the command line",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ideaspaces",
|
|
8
|
+
"knowledge",
|
|
9
|
+
"cli",
|
|
10
|
+
"markdown",
|
|
11
|
+
"notes",
|
|
12
|
+
"git",
|
|
13
|
+
"local-first",
|
|
14
|
+
"agent"
|
|
15
|
+
],
|
|
16
|
+
"bin": {
|
|
17
|
+
"ideaspaces": "bundle/ideaspaces.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"bundle"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"clean": "node -e \"const fs=require('node:fs'); for (const path of ['bundle', 'dist']) fs.rmSync(path, { recursive: true, force: true })\"",
|
|
24
|
+
"build": "npm run clean && tsc && npm run bundle",
|
|
25
|
+
"bundle": "node build.mjs",
|
|
26
|
+
"check:package": "npm run build && node scripts/check-package.mjs",
|
|
27
|
+
"dev": "tsc --watch",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest",
|
|
30
|
+
"prepare": "npm run build"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@ideaspaces/protocol": "github:IdeaSpaces-xyz/ideaspace-protocol#197a82e6319cc98536570c9e1d312cf19335bc17",
|
|
34
|
+
"@ideaspaces/sdk": "github:IdeaSpaces-xyz/sdk#7ed027a6b4f51dfc8c546d94eb4d26e62843c58b",
|
|
35
|
+
"@types/node": "^22.0.0",
|
|
36
|
+
"esbuild": "^0.28.0",
|
|
37
|
+
"typescript": "^5.8.3",
|
|
38
|
+
"vitest": "^3.1.1"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=20"
|
|
42
|
+
},
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public",
|
|
46
|
+
"registry": "https://registry.npmjs.org/"
|
|
47
|
+
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/IdeaSpaces-xyz/cli.git"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://ideaspaces.xyz/developers",
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/IdeaSpaces-xyz/cli/issues"
|
|
55
|
+
}
|
|
56
|
+
}
|