-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "obsidian-wordwise-plugin",
"version": "1.0.1",
"private": true,
"description": "Writing companion for AI content generation.",
"license": "MIT",
"author": "ckt1031",
"main": "main.js",
"scripts": {
"build": "bun esbuild.config.ts production",
"dev": "bun esbuild.config.ts",
"format": "biome format . --write",
"lint": "tsc --noEmit --skipLibCheck && biome check .",
"lint:fix": "tsc --noEmit --skipLibCheck && biome check --write .",
"test": "vitest run",
"version": "bun version-bump.ts && biome format manifest.json versions.json --write && git add manifest.json versions.json",
"prepare": "husky || true",
"lint-staged": "lint-staged"
},
"dependencies": {
"@anthropic-ai/sdk": "0.32.1",
"@google/generative-ai": "0.21.0",
"cohere-ai": "7.15.0",
"dayjs": "1.11.13",
"front-matter": "^4.0.2",
"fuse.js": "7.0.0",
"localforage": "1.10.0",
"nanoid": "5.0.9",
"openai": "4.76.2",
"qrcode": "1.5.4",
"rambda": "9.4.0",
"slugify": "1.6.6",
"snakecase-keys": "8.0.1",
"valibot": "0.42.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.2",
"@types/qrcode": "1.5.5",
"builtin-modules": "4.0.0",
"esbuild": "0.24.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"obsidian": "1.7.2",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"lint-staged": {
"*.{js,ts,mjs,cjs}": ["biome check && tsc"]
},
"trustedDependencies": ["@biomejs/biome"]
}