-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.69 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
78
79
{
"name": "agent-reference",
"version": "1.0.2",
"description": "Give your agents the source: dependencies at the installed version, git repositories, and local folders, all by name.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mutewinter/agent-reference.git"
},
"homepage": "https://agent-reference.dev",
"bugs": "https://github.com/mutewinter/agent-reference/issues",
"bin": {
"agent-reference": "dist/cli.js"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"guide",
"schema",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && node --input-type=module -e \"import {chmod} from 'node:fs/promises'; await chmod(new URL('dist/cli.js', import.meta.url), 0o755);\"",
"dev": "node --experimental-strip-types src/cli.ts",
"dev:all": "turbo run site:dev talk:dev --ui tui",
"check": "turbo run format lint check-types test site:lint site:check-types --continue=dependencies-successful",
"test": "node --test --experimental-strip-types tests/*.test.ts",
"check-types": "tsc -p tsconfig.check.json",
"lint": "oxlint --type-aware src tests evals scripts",
"lint:fix": "oxlint --type-aware --fix src tests evals scripts",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"site:dev": "pnpm --dir site run dev",
"site:build": "pnpm --dir site run build",
"site:lint": "pnpm --dir site run lint",
"site:check-types": "pnpm --dir site run check-types",
"talk:dev": "pnpm --dir talks/2026-08-25-nashjs run dev",
"talk:build": "rm -rf site/public/talk && pnpm --dir talks/2026-08-25-nashjs exec slidev build slides.md --base /talk/ --out ../../site/public/talk && rm -f site/public/talk/_redirects",
"sync-readme": "node scripts/sync-readme.ts",
"sync-agent-files": "node scripts/sync-agent-files.ts",
"prepack": "npm run build",
"prepare": "npm run build",
"clean": "node --input-type=module -e \"import {rm} from 'node:fs/promises'; await rm(new URL('dist', import.meta.url), {recursive: true, force: true});\""
},
"keywords": [
"references",
"agents",
"git",
"pnpm",
"source",
"context"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@11.20.0",
"devDependencies": {
"@types/node": "^24.13.2",
"@types/semver": "^7.7.1",
"js-yaml": "^5.3.0",
"oxfmt": "^0.65.0",
"oxlint": "^1.79.0",
"oxlint-tsgolint": "^7.0.2001",
"turbo": "^2.10.11",
"typescript": "^5.9.3"
},
"dependencies": {
"semver": "^7.8.4"
}
}