forked from tinyhumansai/openhuman-skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.87 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.87 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
{
"name": "@alphahuman/skills",
"version": "1.0.0",
"type": "module",
"scripts": {
"clean": "rimraf skills skills-ts-out",
"build:ts": "tsc -p tsconfig.build.json",
"build:strip": "node scripts/strip-exports.mjs",
"build:bundle": "node scripts/bundle-skills.mjs",
"build:telegram": "node scripts/bundle-telegram.mjs",
"install:skills": "node scripts/install-skill-deps.mjs",
"build": "npm run clean && npm run install:skills && npm run build:ts && npm run build:bundle && npm run build:strip",
"build:watch": "node scripts/watch-build.mjs",
"watch": "npm run build:watch",
"typecheck": "tsc --noEmit",
"test": "bash scripts/test-js.sh",
"test:script": "tsx dev/test-harness/runner-node.ts",
"test:live": "tsx dev/test-harness/live-runner-node.ts",
"repl": "tsx dev/test-harness/repl-node.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "node scripts/validate.mjs",
"validate:secrets": "node scripts/scan-secrets.mjs",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@notionhq/client": "^5.9.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/better-sqlite3": "^7.6.8",
"@types/html-to-text": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"better-sqlite3": "^11.0.0",
"dotenv": "^17.2.3",
"esbuild": "^0.27.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"html-to-text": "^9.0.5",
"husky": "^9.1.7",
"koffi": "^2.9.0",
"node-llama-cpp": "^3.5.0",
"prettier": "^3.4.2",
"rimraf": "^6.1.2",
"socket.io-client": "^4.8.3",
"tsx": "^4.19.0",
"typescript": "~5.8.3",
"ws": "^8.18.0"
}
}