-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.76 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": "okf-harness",
"version": "0.6.0",
"private": true,
"description": "Agent-first local harness for OKF-compatible LLM Wikis.",
"license": "Apache-2.0",
"type": "module",
"author": "Eric Zhou",
"homepage": "https://github.com/pumblus/okf-harness#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pumblus/okf-harness.git"
},
"bugs": {
"url": "https://github.com/pumblus/okf-harness/issues"
},
"packageManager": "pnpm@11.0.6",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "pnpm --recursive --filter '@okf-harness/*' --filter '@pumblus/okf-harness' build",
"docs:llms": "node scripts/build-llms.mjs",
"docs:llms:check": "node scripts/build-llms.mjs --check",
"site:build": "node scripts/build-site.mjs",
"site:check": "node scripts/build-site.mjs --check",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"lint": "biome check package.json biome.json tsconfig.json tsconfig.base.json vitest.config.ts scripts/*.mjs packages/*/package.json packages/*/tsconfig.json packages/*/src packages/*/test && pnpm docs:llms:check",
"format": "biome format --write package.json biome.json tsconfig.json tsconfig.base.json vitest.config.ts scripts/*.mjs packages/*/package.json packages/*/tsconfig.json packages/*/src packages/*/test",
"smoke:marketplace": "node scripts/smoke-marketplace-plugins.mjs",
"smoke:tarball": "node scripts/smoke-npm-tarballs.mjs"
},
"keywords": [
"okf",
"open-knowledge-format",
"llm-wiki",
"agent-skills",
"macos",
"windows",
"linux"
],
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/node": "^25.9.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}