-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "skill-sunset",
"version": "0.3.0",
"description": "Find generic agent instructions that became stale, duplicated, or unnecessary as models and runtimes evolved.",
"repository": {
"type": "git",
"url": "git+https://github.com/ooocooc/open-skill-sunset.git"
},
"homepage": "https://github.com/ooocooc/open-skill-sunset#readme",
"bugs": {
"url": "https://github.com/ooocooc/open-skill-sunset/issues"
},
"author": {
"name": "ooocooc",
"url": "https://github.com/ooocooc"
},
"type": "module",
"bin": {
"skill-sunset": "bin/skill-sunset.js"
},
"files": [
"bin/",
"src/",
"integrations/",
"CHANGELOG.md",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"scripts": {
"audit": "node ./bin/skill-sunset.js audit .",
"scan:codex": "node ./bin/skill-sunset.js audit --codex --open",
"scan:claude": "node ./bin/skill-sunset.js audit --claude --open",
"pretest": "node ./test/setup-fixture.js",
"test": "node --test test/analyzer.test.js test/privacy-experiment.test.js test/security.test.js",
"demo": "node ./bin/skill-sunset.js audit ./test/fixtures/sample-setup --out ./demo-report",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"agents-md",
"claude-md",
"agent-skills",
"prompt-lint",
"codex",
"claude-code"
],
"license": "MIT"
}