-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.41 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
{
"name": "97",
"version": "0.8.0",
"type": "module",
"main": ".opencode/plugins/97.js",
"description": "Skills distilled from the hard-won lessons of world-renowned programmers, in the spirit of '97 Things Every Programmer Should Know'. Plugin for Claude Code, GitHub Copilot CLI, and OpenCode.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oribarilan/97.git"
},
"files": [
".claude-plugin/",
".opencode/",
"hooks/",
"skills/",
"scripts/",
"AGENTS.md",
"CHANGELOG.md",
"CONTENT-LICENSE.md",
"CONTRIBUTE.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "node scripts/lint-skills.mjs",
"smoke": "node scripts/smoke-load.mjs",
"test:trigger-force": "node scripts/test-trigger-force.mjs",
"test:trigger-e2e": "node scripts/test-trigger-e2e.mjs",
"test:trigger-e2e:opencode": "node scripts/test-trigger-e2e.mjs --harness=opencode",
"test:trigger-e2e:claude": "node scripts/test-trigger-e2e.mjs --harness=claude",
"test:trigger-e2e:copilot": "node scripts/test-trigger-e2e.mjs --harness=copilot",
"format": "prettier --write \"**/*.{js,mjs,cjs,json,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,mjs,cjs,json,yml,yaml}\"",
"test": "npm run lint && npm run format:check && npm run smoke"
},
"devDependencies": {
"prettier": "^3.3.3"
}
}