-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "mdbase-tasknotes",
"version": "0.1.2",
"description": "Standalone CLI for managing markdown tasks via mdbase",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/callumalpass/mdbase-tasknotes.git"
},
"keywords": [
"mdbase",
"tasks",
"cli",
"markdown",
"task-management",
"natural-language",
"productivity"
],
"bin": {
"mtn": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"test": "npm run build && node --test tests/**/*.test.mjs",
"test:tz-parity": "npm run build && ./scripts/test-tz-parity.sh",
"prepublishOnly": "tsup"
},
"dependencies": {
"@callumalpass/mdbase": "^0.2.1",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"date-fns": "^4.1.0",
"ora": "^5.4.1",
"rrule": "^2.8.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tasknotes-nlp-core": "^0.1.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0"
}
}