-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 2.93 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "tendr-cli",
"version": "0.0.19",
"description": "cli tools for markdown-based digital gardening",
"license": "GPL-3.0",
"author": {
"name": "manunamz",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/wikibonsai/tendr-cli"
},
"type": "module",
"files": [
"dist/**/*"
],
"bin": {
"t": "./dist/cli.esm.js",
"tend": "./dist/cli.esm.js",
"tendr": "./dist/cli.esm.js"
},
"source": "./src/cli.ts",
"main": "./dist/cli.cjs.js",
"module": "./dist/cli.esm.js",
"browser": "./dist/cli.umd.js",
"scripts": {
"build": "rollup -c",
"clean": "npx del dist",
"rebuild": "yarn clean && yarn build",
"lint": "eslint ./src ./test --ext .ts",
"pretest": "yarn rebuild",
"test": "mocha",
"tendr": "node --experimental-specifier-resolution=node --loader=ts-node/esm -r ts-node/register ./src/cli.ts"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"caml-mkdn": "^0.0.2",
"columnify": "^1.6.0",
"glob": "^8.0.3",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"readline-sync": "^1.4.10",
"semtree": "^0.0.12",
"table": "^6.8.1",
"wikirefs": "^0.0.6",
"yargs": "^17.6.1"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@types/columnify": "^1.5.1",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.1",
"@types/mock-fs": "^4.13.4",
"@types/node": "^18.0.0",
"@types/readline-sync": "^1.4.4",
"@types/sinon": "^10.0.13",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"esm": "^3.2.25",
"mocha": "^10.0.0",
"mock-fs": "^5.2.0",
"rollup": "2.70.1",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-ts": "^3.0.2",
"sinon": "^14.0.1",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.3"
},
"keywords": [
"bonsai",
"bidirectional link",
"bidirectional links",
"cli",
"command line",
"command line interface",
"command line utility",
"digital garden",
"exocortex",
"graph",
"hierarchy",
"internal link",
"internal links",
"jot",
"knowledge base",
"markdown",
"markup",
"note",
"note taking",
"notes",
"ontology",
"personal knowledge management",
"personal wiki",
"pkm",
"ref",
"refs",
"reference",
"references",
"second brain",
"semantic tree",
"taxonomy",
"tree",
"web",
"wiki",
"wikibonsai",
"wiki-link",
"wiki-links",
"wikilink",
"wikilinks",
"wikiref",
"wikirefs",
"zettelkasten"
]
}