-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "agentfiles",
"version": "0.9.1",
"description": "AI Skills Manager for Obsidian",
"main": "main.js",
"scripts": {
"audit": "bun audit",
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"check": "bun run audit && bun run lint && bun test && bun run build",
"lint": "eslint src/",
"release:tag": "bun run scripts/prepare-release-tag.ts",
"test": "bun test"
},
"dependencies": {
"@crafter/skillkit": "^0.14.0"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@lezer/highlight": "^1.2.3",
"@types/bun": "^1.4.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"esbuild": "^0.25.0",
"eslint": "9",
"eslint-plugin-obsidianmd": "^0.4.2",
"obsidian": "latest",
"typescript": "^5.7.0"
}
}