-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.14 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.14 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
79
80
81
{
"name": "specorator",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Spec-driven, agentic software development workflow inside Obsidian.",
"main": "main.js",
"scripts": {
"dev": "vite",
"dev:open": "vite --open",
"dev:plugin": "vite build --watch --mode plugin",
"build": "vue-tsc --noEmit && vite build --mode plugin",
"typecheck": "vue-tsc --noEmit -p tsconfig.lint.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:rules": "node eslint-rules/__tests__/no-claude-home-reads.test.cjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --configLoader runner --project unit",
"test:watch": "vitest --configLoader runner --project unit",
"test:storybook": "vitest run --configLoader runner --project storybook",
"test:all": "vitest run --configLoader runner",
"build:web": "vue-tsc --noEmit && vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:coverage": "vitest run --configLoader runner --project unit --coverage",
"verify": "npm audit --audit-level=high --omit=dev && npm run typecheck && npm run lint && npm run test:coverage && npm run build && npm run build:web && npm run verify:bundle-size && npm run docs:api && npm run validate:manifest && npm run verify:scaffold && npm run verify:workflows && git diff --check --ignore-cr-at-eol",
"docs:api": "typedoc",
"release:preflight": "node scripts/release-preflight.mjs",
"validate:manifest": "node scripts/validate-manifest.js",
"verify:scaffold": "node scripts/verify-scaffold.mjs",
"verify:workflows": "node scripts/verify-workflows.js",
"verify:bundle-size": "node scripts/check-bundle-size.mjs",
"build:pages": "node scripts/build-pages.js",
"scaffold:module": "node scripts/scaffold-module.mjs",
"build:deploy": "npm run build && node scripts/deploy-to-test-vault.mjs",
"hooks:install": "git config core.hooksPath .githooks",
"version": "node version-bump.js && node scripts/validate-manifest.js && git add manifest.json versions.json"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.141",
"@modelcontextprotocol/sdk": "^1.29.0",
"pinia": "^3.0.4",
"vue": "^3.5.34",
"vue-i18n": "^11.4.2",
"vue-router": "^5.0.6",
"yaml": "^2.8.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@pinia/testing": "^1.0.3",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/vue3-vite": "^10.3.6",
"@types/node": "^25.6.2",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/browser": "^4.1.5",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"@vue/test-utils": "^2.4.10",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.2.9",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"obsidian": "^1.12.3",
"playwright": "^1.59.1",
"postcss": "^8.5.13",
"prettier": "^3.8.3",
"storybook": "^10.3.6",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.8"
}
}