-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.04 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
{
"name": "mindtyper",
"version": "0.8.0",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier -c .",
"format:write": "prettier -w .",
"test": "vitest run --reporter=dot --coverage",
"ci": "pnpm typecheck && pnpm lint && pnpm run -s format:check && pnpm test && pnpm run -s doc:check",
"posttest": "node scripts/coverage-guard.cjs",
"dev": "vitest watch",
"prepare": "husky",
"setup:local": "node scripts/setup-local-assets.cjs",
"doc:sync": "node scripts/doc2code.cjs sync",
"doc:check": "node scripts/doc2code.cjs check",
"copy:wasm": "mkdir -p \"hosts/web/public/wasm\" && cp -R \"node_modules/.pnpm/onnxruntime-web@*/node_modules/onnxruntime-web/dist/\"* \"hosts/web/public/wasm/\" 2>/dev/null || echo 'WASM copy failed; using CDN fallback'",
"monitor": "pnpm --prefix monitor dev",
"demo:web": "pnpm --prefix hosts/web dev",
"diag:smoke": "node scripts/diag-smoke.cjs"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,css,scss,json,mdx}": "prettier --write",
"docs/**/*.{md,mdx}": [
"prettier --write",
"pnpm doc:check"
]
},
"devDependencies": {
"@huggingface/transformers": "^3.7.0",
"@mermaid-js/mermaid-cli": "^11.9.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.4",
"fast-glob": "^3.3.3",
"glob": "^11.0.3",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"prettier": "^3.3.3",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"typescript": "^5.5.4",
"unified": "^11.0.5",
"vitest": "^1.6.0"
}
}