-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.89 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
{
"name": "prism-triage",
"version": "2.0.0",
"description": "BYOK GitHub PR/Issue triage tool — de-duplicate, rank, and vision-check PRs at scale",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli.js"
},
"bin": {
"prism": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:action": "tsc -p action/tsconfig.json && mv action/dist/index.js action/dist/comment.js",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/",
"format": "biome format src/ --write",
"ci": "npm run build && npm run lint && npm test && node dist/cli.js --version && node dist/cli.js --help",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run test"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
".env.example",
"prism.config.yaml",
"README.md",
"LICENSE"
],
"keywords": [
"github",
"pr-triage",
"pull-request",
"duplicate-detection",
"code-review",
"ai",
"embeddings",
"similarity",
"byok",
"cli",
"devtools",
"maintainer-tools"
],
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"hono": "^4.12.8",
"node-cron": "^4.2.1",
"ora": "^9.3.0",
"sqlite-vec": "^0.1.7-alpha.2",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.2.3",
"@types/node-cron": "^3.0.11",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
}
}