-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.53 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
{
"name": "@daichunghy/agentsmd",
"version": "0.1.0-alpha.4",
"description": "One source of truth for AI agent instructions — linted, wired, scored.",
"license": "MIT",
"author": "daichunghy",
"publishConfig": {
"access": "public",
"tag": "alpha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daichunghy/agentsmd.git"
},
"bugs": {
"url": "https://github.com/daichunghy/agentsmd/issues"
},
"homepage": "https://github.com/daichunghy/agentsmd#readme",
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"agentsmd": "dist/main.js"
},
"files": [
"dist",
"schemas",
"action.yml",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:action": "esbuild src/action/index.ts --bundle --platform=node --target=node20 --outfile=action-dist/index.js",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run build",
"verify": "npm run typecheck && npm run build && npm run build:action && npm run test",
"test:windows-pack": "node scripts/windows-pack-smoke.js"
},
"keywords": [
"agents-md",
"agentsmd",
"claude-code",
"codex",
"gemini-cli",
"cursor",
"github-copilot",
"ai-agents",
"cli",
"linting",
"context-engineering"
],
"devDependencies": {
"@actions/core": "^1.11.1",
"@types/node": "^26.0.0",
"esbuild": "^0.25.12",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
}
}