-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.99 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
{
"name": "skilld",
"type": "module",
"version": "3.0.0-beta.3",
"packageManager": "pnpm@11.24.0",
"description": "Search, run, install, and keep Skills current",
"author": {
"name": "Harlan Wilton",
"email": "harlan@harlanzw.com",
"url": "https://harlanzw.com/"
},
"contributors": [
{
"name": "Ori",
"url": "https://github.com/oritwoen"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/skilld-dev/skilld.git"
},
"keywords": [
"agent",
"skills",
"cli",
"github"
],
"bin": {
"skilld": "./bin/skilld.mjs"
},
"files": [
"bin",
"loader"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "pnpm --filter skilld-protocol build && pnpm --filter skilld-harness build && cargo build --workspace",
"lint": "eslint . && cargo fmt --all -- --check && cargo clippy --workspace --all-targets -- -D warnings",
"lint:fix": "eslint . --fix && cargo fmt --all",
"typecheck": "pnpm --filter skilld-protocol typecheck && pnpm --filter skilld-harness typecheck",
"test": "vitest",
"test:js": "vitest run tests/loader && pnpm --filter skilld-protocol test:run && pnpm --filter skilld-harness test:run",
"test:run": "pnpm test:js && cargo test --workspace",
"release": "pnpm build && bumpp",
"prepack": "pnpm test:loader",
"test:loader": "vitest run --config vitest.config.mjs"
},
"optionalDependencies": {
"skilld-cli-darwin-arm64": "workspace:*",
"skilld-cli-darwin-x64": "workspace:*",
"skilld-cli-linux-arm64-gnu": "workspace:*",
"skilld-cli-linux-arm64-musl": "workspace:*",
"skilld-cli-linux-x64-gnu": "workspace:*",
"skilld-cli-linux-x64-musl": "workspace:*",
"skilld-cli-win32-arm64-msvc": "workspace:*",
"skilld-cli-win32-x64-msvc": "workspace:*"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:dev-lint",
"bumpp": "catalog:",
"eslint": "catalog:dev-lint",
"vitest": "catalog:dev-test"
}
}