-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.46 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
{
"name": "coding-agent-skills",
"version": "0.2.19",
"description": "Evidence-first, read-only coding-agent skills and project adapter tooling.",
"type": "module",
"private": false,
"license": "MIT",
"keywords": [
"coding-agent",
"agent-skills",
"repo-map",
"route-trace",
"env-audit",
"secret-audit",
"api-contract-audit",
"migration-review",
"github-handoff",
"deployment-preflight",
"project-adapters",
"code-validation",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OneClickPostFactory/coding-agent-skills.git"
},
"homepage": "https://github.com/OneClickPostFactory/coding-agent-skills#readme",
"bugs": {
"url": "https://github.com/OneClickPostFactory/coding-agent-skills/issues"
},
"bin": {
"coding-agent-skills": "bin/coding-agent-skills"
},
"files": [
"bin/",
"scripts/",
"skills/",
"schemas/",
"contracts/",
"docs/",
"examples/",
"tests/",
"AGENTS.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"ROADMAP.md",
"RUNBOOK.md",
"work-ledger.md",
"runs/skill-runs.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"validate": "node scripts/validate-pack.mjs .",
"test": "node scripts/test-pack.mjs && node --test",
"pack:dry-run": "npm pack --dry-run"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}