-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.26 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
71
72
73
74
75
76
77
78
{
"name": "qoderian",
"version": "1.0.2",
"private": true,
"description": "Qoder CLI embedded in the Obsidian sidebar",
"main": "main.js",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"build:css": "node scripts/build-css.mjs",
"dev": "npm run build:css && node esbuild.config.mjs",
"build": "node scripts/build.mjs production",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:names && eslint \"{src,tests}/**/*.ts\"",
"lint:names": "node scripts/check-file-names.mjs",
"lint:fix": "npm run lint -- --fix",
"test": "node scripts/run-jest.js",
"test:watch": "node scripts/run-jest.js --watch",
"test:coverage": "node scripts/run-jest.js --coverage",
"smoke:qoder": "node scripts/smoke-qoder-sdk.mjs",
"audit:prod": "npm audit --omit=dev",
"release:check": "node scripts/validate-release.mjs",
"version": "node scripts/sync-version.js && git add manifest.json versions.json"
},
"keywords": [
"qodercli",
"obsidian",
"obsidian-plugin",
"productivity",
"ide"
],
"author": "Qoder",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.13.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"esbuild": "0.28.1",
"eslint": "^10.2.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-obsidianmd": "^0.4.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"obsidian": "^1.13.1",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2"
},
"dependencies": {
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.38.6",
"@modelcontextprotocol/sdk": "~1.30.0",
"@qoder-ai/qoder-agent-sdk": "1.0.16",
"tslib": "^2.8.1"
},
"overrides": {
"@babel/core": "7.29.7",
"@hono/node-server": "2.0.12",
"body-parser": "2.3.0",
"brace-expansion": "5.0.9",
"esbuild": "$esbuild",
"fast-uri": "3.1.5",
"hono": "4.13.0",
"ip-address": "10.4.0",
"js-yaml": "4.3.0",
"minimatch": "10.2.5",
"test-exclude": {
"minimatch": {
".": "^3.1.2",
"brace-expansion": "^1.1.12"
}
}
}
}