-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.21 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
{
"name": "flow",
"version": "1.2.3",
"description": "Implements key processes in David Allen's Getting Things Done (GTD) methodology",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "tsc -noEmit -skipLibCheck",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"verify": "npm run build && npm test",
"evaluate:coach": "source venv/bin/activate && deepeval test run tests/coach-evaluation/test_coach_evaluation.py",
"evaluate:coach:watch": "source venv/bin/activate && deepeval test run tests/coach-evaluation/test_coach_evaluation.py --watch",
"evaluate:coach:report": "source venv/bin/activate && deepeval test run tests/coach-evaluation/test_coach_evaluation.py --create-report",
"release": "tsx scripts/release.ts",
"release:beta": "tsx scripts/release-beta.ts",
"prepare": "husky"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"gtd",
"flow",
"productivity"
],
"author": "Ben",
"license": "GPL-3.0-only",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsdom": "^27.0.0",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.25.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jsdom": "^27.0.1",
"obsidian": "latest",
"obsidian-dataview": "^0.5.68",
"prettier": "^3.6.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"tsx": "^4.20.6",
"typescript": "^5.3.3"
},
"overrides": {
"svelte": "^4.2.19",
"handlebars": "4.7.9",
"flatted": "3.4.2",
"picomatch": "2.3.2",
"@typescript-eslint/typescript-estree": {
"minimatch": ">=9.0.7"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@types/uuid": "^10.0.0",
"gray-matter": "^4.0.3",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"uuid": "^13.0.0"
}
}