-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.45 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
{
"name": "hellohands",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"goose:proxy": "tsx server/gooseProxy.ts",
"dev:all": "run-p dev goose:proxy",
"mcp:server": "tsx server/mcpServer.ts",
"hand:model": "tsx scripts/download_hand_model.ts",
"format": "prettier --write \"{src,scripts,adapters,practice,PRD}/**/*.{ts,tsx,js,jsx,json,jsonl,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"msasl:filter": "tsx scripts/msasl_filter.ts",
"msasl:download": "tsx scripts/msasl_download.ts",
"msasl:trim": "tsx scripts/msasl_trim.ts",
"msasl:labels": "tsx scripts/msasl_emit_labels.ts",
"msasl:stats": "tsx scripts/msasl_stats.ts",
"msasl:prep100": "pnpm msasl:filter && pnpm msasl:download && pnpm msasl:trim && pnpm msasl:labels",
"practice:validate": "tsx scripts/practice_validate_whitelist.ts",
"practice:generate": "tsx scripts/practice_generate_packs.ts",
"practice:coverage": "tsx scripts/practice_coverage.ts",
"practice:all": "pnpm practice:validate && pnpm practice:generate && pnpm practice:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalfl0wer/hellohands.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/digitalfl0wer/hellohands/issues"
},
"homepage": "https://github.com/digitalfl0wer/hellohands#readme",
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=18"
},
"simple-git-hooks": {
"pre-commit": "pnpm format"
},
"dependencies": {
"dotenv": "^16.4.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^4.5.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.2",
"@types/express": "^4.17.21",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"jsdom": "^27.0.1",
"express": "^4.19.2",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.9.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"tsx": "^4.15.2",
"typescript": "^5.5.4",
"vite": "^5.4.10",
"vitest": "^4.0.5"
}
}