-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.61 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
{
"name": "omniskill",
"version": "0.7.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/devos-ing/omni-skills"
},
"bin": {
"omniskill": "dist/cli.js"
},
"files": [
"dist",
"src",
"bundled-skills",
"examples"
],
"scripts": {
"dev": "bun src/cli.ts",
"dev:alias": "scripts/dev-cli-alias.sh install",
"dev:alias:status": "scripts/dev-cli-alias.sh status",
"dev:unalias": "scripts/dev-cli-alias.sh uninstall",
"build": "bun build --target=node --outfile=dist/cli.js src/cli.ts",
"test": "bun test tests",
"ci:test": "find tests -maxdepth 1 -name '*.test.ts' ! -name '*.e2e.test.ts' -print0 | xargs -0 bun test",
"ci:check": "biome check . && bun run typecheck && bun run ci:test",
"coverage": "bun test tests --coverage --coverage-reporter=lcov --coverage-dir=coverage && bun scripts/check-coverage.ts 90 coverage/lcov.info",
"coverage:check": "bun scripts/check-coverage.ts 90 coverage/lcov.info",
"deps:check-recency": "bun scripts/check-package-recency.ts",
"sandbox:evaluate-cli": "bun scripts/evaluate-cli-sandbox.ts",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check . && bun run typecheck && bun run coverage",
"prepack": "bun run build",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.2",
"picocolors": "^1.1.1",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/bun": "^1.3.2",
"husky": "^9.1.7",
"typescript": "^5.9.3"
}
}