-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.97 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.97 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@frostime/siyuan-cli",
"version": "0.15.3",
"description": "Agent-first CLI for SiYuan Note — workspace management, kernel API proxy, workflow tools, and agent skill install",
"type": "module",
"main": "./dist/cli.mjs",
"types": "./dist/cli.d.mts",
"exports": {
".": {
"types": "./dist/cli.d.mts",
"import": "./dist/cli.mjs"
},
"./schema": {
"types": "./dist/shared/schema.d.mts",
"import": "./dist/shared/schema.mjs"
}
},
"bin": {
"siyuan": "./bin/siyuan.mjs"
},
"files": [
"bin/**",
"dist/**",
"src/docs/**",
"src/approval/approval-center.html",
"skills/**"
],
"publishConfig": {
"access": "public"
},
"source": "src/cli.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown --config tsdown.config.ts",
"dev": "tsdown --config tsdown.config.ts --no-dts --sourcemap --watch",
"siyuan": "node bin/siyuan.mjs",
"typecheck": "tsc --noEmit",
"test": "tsx --test tests/*.test.ts",
"prepublishOnly": "pnpm run build",
"prelink": "pnpm run build",
"format": "prettier --write ."
},
"keywords": [
"siyuan",
"思源笔记",
"cli",
"note-taking",
"agent",
"kernel-api"
],
"author": "frostime",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/frostime/siyuan-cli.git"
},
"homepage": "https://github.com/frostime/siyuan-cli#readme",
"bugs": {
"url": "https://github.com/frostime/siyuan-cli/issues"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"citty": "^0.1.6",
"consola": "^3.2.3",
"defu": "^6.1.4",
"jiti": "^2.4.2",
"micromatch": "^4.0.8",
"pathe": "^1.1.2",
"yaml": "^2.5.1"
},
"devDependencies": {
"@types/micromatch": "^4.0.9",
"@types/node": "^22.9.0",
"prettier": "^3.8.3",
"tsdown": "^0.21.9",
"tsx": "^4.21.0",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@10.24.0"
}