-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 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
{
"name": "@mainframe/plugins",
"version": "0.1.0",
"private": true,
"description": "Mainframe Cursor, Codex, and Claude Code plugin manifests, skill, MCP wiring, and stop hooks.",
"keywords": [
"agent-skills",
"hooks",
"mainframe",
"mcp",
"video"
],
"homepage": "https://mainframe.app",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/mainframecomputer/mainframe-plugins.git"
},
"bin": {
"mainframe-hook-claude": "./dist/hooks/claude/stop.js",
"mainframe-hook-codex": "./dist/hooks/codex/stop.js",
"mainframe-hook-cursor": "./dist/hooks/cursor/stop.js"
},
"files": [
".agents",
".claude-plugin",
".codex-plugin",
".cursor-plugin",
".mcp.json",
"LICENSE",
"README.md",
"assets/logo.png",
"dist",
"hooks/claude/hooks.json",
"hooks/codex/hooks.json",
"hooks/cursor/hooks.json",
"skills"
],
"type": "module",
"scripts": {
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "rm -rf dist && tsc -p tsconfig.build.json && bun tooling/mark-executable.ts",
"build:check": "bun run build && git diff --exit-code -- dist",
"generate": "bun tooling/generate.ts && oxfmt --write package.json .cursor-plugin .codex-plugin .agents .claude-plugin",
"check:generated": "bun tooling/generated-drift-check.ts",
"archive:release": "bun run generate && bun run build && git diff --exit-code -- package.json .cursor-plugin .codex-plugin .agents .claude-plugin dist && bun tooling/release-archive.ts",
"pack:release": "bun run verify && bun run archive:release",
"lint": "oxlint . --deny-warnings --report-unused-disable-directives",
"lint:fix": "oxlint . --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"test": "vitest run",
"verify": "bun run check:generated && bun run typecheck && bun run build:check && bun run lint && bun run format:check && bun run test",
"verify:ci": "bun run generate && git diff --exit-code && bun run typecheck && bun run build:check && bun run lint && bun run format:check && bun run test",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^22.15.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.3",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "^5.9.3",
"vitest": "^4.1.5",
"zod": "^4.1.13"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,mts,cts}": [
"oxlint --fix --deny-warnings --report-unused-disable-directives",
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{json,jsonc,md,yaml,yml,css,html,svg}": "oxfmt --no-error-on-unmatched-pattern"
},
"packageManager": "bun@1.3.1"
}