-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.25 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 4.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@colin4k1024/tsp",
"version": "2.5.6",
"description": "Open-source Team Skills Platform for role-based AI delivery workflows, shared skills, hooks, commands, and multi-platform installs.",
"repository": {
"type": "git",
"url": "git+https://github.com/Colin4k1024/tsp.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"claude-code",
"ai",
"agents",
"skills",
"hooks",
"rules",
"claude",
"anthropic",
"team-skills",
"open-source",
"tech-lead",
"architect",
"tdd",
"code-review",
"security",
"automation",
"grok",
"opencode",
"codex"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "node scripts/build-platform-artifacts.js",
"validate": "node scripts/validate-library.js",
"validate:refs": "node scripts/validate-file-references.js --strict",
"validate:docs-freshness": "node scripts/validate-doc-freshness.js",
"graphify:doctor": "node scripts/graphify-preflight.js",
"gitnexus:doctor": "node scripts/gitnexus-preflight.js",
"codegraph:doctor": "node scripts/codegraph-preflight.js",
"validate:skill-structure": "node scripts/validate-skill-structure.js",
"validate:prebuilt": "node scripts/validate-prebuilt.js",
"validate:tarball": "node scripts/validate-packed-tarball.js",
"release:health": "node scripts/release-health-summary.js",
"prebuilt:sync": "node scripts/sync-prebuilt-from-github.js",
"workflow:list": "node scripts/workflow-list.js",
"workflow:help": "node scripts/workflow-help.js",
"artifact:persist": "node scripts/artifact-persistence.js",
"project:progress": "node scripts/project-progress.js",
"workflow:run": "node scripts/workflow-run.js",
"workflow:runs": "node scripts/workflow-runs.js",
"workflow:readiness": "node scripts/workflow-readiness.js",
"workflow:validate": "node scripts/validate-workflows.js",
"audit:query": "node scripts/query-audit-logs.js",
"install:claude": "node scripts/install-apply.js --profile full --target claude && npx --yes claude-mem install",
"install:claude-code": "node scripts/install-apply.js --profile full --target claude && npx --yes claude-mem install",
"install:codex": "node scripts/install-apply.js --profile full --target codex",
"install:grok": "node scripts/install-apply.js --profile full --target grok",
"install:opencode": "node scripts/install-apply.js --profile full --target opencode",
"install:cangming": "node scripts/install-apply.js --profile full --target cangming",
"prepack": "node scripts/validate-prebuilt.js",
"prepublishOnly": "node scripts/validate-prebuilt.js",
"test": "node scripts/validate-library.js && node scripts/validate-doc-freshness.js && node tests/run-all.js",
"lint": "eslint . && markdownlint '**/*.md' --ignore node_modules",
"harness:audit": "node scripts/harness-audit.js",
"pack": "npm pack",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"bin": {
"tsp": "bin/tsp-create.js",
"tsp-create": "bin/tsp-create.js",
"tsp-install": "bin/tsp-install.js"
},
"files": [
"bin/",
"crates/oris-claude-bridge/Cargo.toml",
"crates/oris-claude-bridge/Cargo.lock",
"crates/oris-claude-bridge/Cross.toml",
"crates/oris-claude-bridge/src/",
"scripts/",
"manifests/",
"schemas/",
"skills/",
"rules/",
"agents/",
"commands/",
"roles/",
"templates/",
"hooks/",
"contexts/",
"examples/",
"mcp-configs/",
"marketplace.json",
"install.sh",
"install.ps1",
"README.md",
"LICENSE"
],
"dependencies": {
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^7.5.0",
"ajv": "^8.18.0",
"claude-mem": "^12.1.5",
"js-yaml": "^4.1.1",
"sql.js": "^1.13.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"c8": "^11.0.0",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"markdownlint-cli": "^0.48.0",
"vitepress": "^1.6.4"
},
"packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38"
}