-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 5.85 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 5.85 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
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "gittensory",
"version": "0.1.0",
"private": true,
"packageManager": "npm@10.9.8",
"license": "AGPL-3.0-only",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"description": "Deterministic base-agent platform for Gittensor OSS contribution intelligence.",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:api": "wrangler d1 migrations apply gittensory --remote && wrangler deploy",
"cf-typegen": "wrangler types && perl -pi -e 's/[[:blank:]]+$//' worker-configuration.d.ts",
"db:migrate:local": "wrangler d1 migrations apply gittensory --local",
"db:migrate:remote": "wrangler d1 migrations apply gittensory --remote",
"drizzle:generate": "drizzle-kit generate",
"build:mcp": "npm --workspace @jsonbored/gittensory-mcp run build",
"test:mcp-pack": "node scripts/check-mcp-package.mjs",
"rees:install": "npm ci --prefix review-enrichment --prefer-offline --no-audit --no-fund",
"rees:test": "npm run rees:install && npm --prefix review-enrichment test",
"rees:validate-sourcemaps": "npm --prefix review-enrichment run validate:sourcemaps",
"db:migrations:check": "node scripts/check-migrations.mjs",
"actionlint": "node scripts/actionlint.mjs",
"ui:dev": "npm run ui:preview",
"extension:build": "node scripts/build-extension.mjs",
"ui:build": "npm run ui:openapi && npm run extension:build && npm --workspace @jsonbored/gittensory-ui run build",
"ui:preview": "npm run ui:build && wrangler dev --config apps/gittensory-ui/dist/server/wrangler.json --ip 127.0.0.1 --port 4173 --local",
"ui:lint": "npm --workspace @jsonbored/gittensory-ui run lint",
"ui:typecheck": "npm --workspace @jsonbored/gittensory-ui run typecheck",
"ui:test": "npm --workspace @jsonbored/gittensory-ui run test",
"ui:openapi": "tsx scripts/write-ui-openapi.ts",
"ui:openapi:check": "tsx scripts/write-ui-openapi.ts --check",
"ui:version-audit": "node scripts/check-ui-mcp-version-copy.mjs",
"ui:deploy": "npm run ui:build && npm run ui:deploy:built",
"ui:deploy:built": "wrangler deploy --config apps/gittensory-ui/dist/server/wrangler.json",
"ui:version:built": "wrangler versions upload --config apps/gittensory-ui/dist/server/wrangler.json",
"changelog": "npm run changelog:root && npm run changelog:mcp",
"changelog:root": "git-cliff --config cliff.toml --output CHANGELOG.md",
"changelog:mcp": "node scripts/generate-mcp-changelog.mjs --output packages/gittensory-mcp/CHANGELOG.md",
"changelog:check": "node scripts/check-changelog.mjs",
"changelog:check:root": "node scripts/check-changelog.mjs --root",
"changelog:check:mcp": "node scripts/check-changelog.mjs --mcp",
"mcp:release-due": "node scripts/check-mcp-release-due.mjs --json",
"mcp:release-candidate": "node scripts/check-mcp-release-candidate.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:upstream-contract": "vitest run test/contract/upstream-contract.test.ts",
"test:workers": "vitest run --config vitest.workers.config.ts",
"test:coverage": "vitest run --coverage",
"test:smoke:production": "node scripts/smoke-production.mjs",
"test:smoke:browser:install": "playwright install chromium",
"test:smoke:browser": "node scripts/smoke-ui-browser.mjs",
"test:ci": "git diff --check && npm run actionlint && npm run db:migrations:check && npm run typecheck && npm run test:coverage && npm run test:workers && npm run build:mcp && npm run test:mcp-pack && npm run rees:test && npm run ui:openapi:check && npm run ui:version-audit && npm run ui:lint && npm run ui:typecheck && npm run ui:test && npm run ui:build",
"test:release": "npm run test:ci && npm run changelog:check",
"test:release:mcp": "npm run test:ci && npm run changelog:check:mcp",
"test:watch": "vitest",
"validate": "npm run typecheck && npm run test:coverage"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"@cloudflare/puppeteer": "^1.1.0",
"@hono/node-server": "^2.0.6",
"@modelcontextprotocol/sdk": "1.29.0",
"@octokit/core": "^7.0.6",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-trace-node": "^2.8.0",
"@sentry/node": "^10.62.0",
"agents": "^0.16.2",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.26",
"ioredis": "^5.11.1",
"pg": "^8.22.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.16.17",
"@tktco/node-actionlint": "^1.6.0",
"@types/node": "^24.13.2",
"@types/pg": "^8.20.0",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@vitest/coverage-v8": "^4.1.9",
"drizzle-kit": "^0.31.10",
"git-cliff": "^2.13.1",
"github-actionlint": "^1.7.12",
"node-addon-api": "^8.8.0",
"node-gyp": "^12.4.0",
"pixelmatch": "^7.2.0",
"playwright": "^1.61.0",
"pngjs": "^7.0.0",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^4.1.9",
"wrangler": "^4.102.0"
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"@lovable.dev/vite-plugin-dev-server-bridge": "1.0.2",
"@lovable.dev/vite-plugin-hmr-gate": "1.1.0",
"esbuild": "^0.28.1",
"ws": "^8.21.0",
"tar": "^7.5.16",
"js-yaml": "^4.2.0",
"lovable-tagger@1.2.0": {
"esbuild": "^0.28.1"
},
"vite": {
"esbuild": "^0.28.1"
}
},
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSONbored/gittensory.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/JSONbored/gittensory/issues"
},
"homepage": "https://github.com/JSONbored/gittensory#readme"
}