-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 868 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 868 Bytes
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
{
"name": "rewelo",
"version": "0.4.1",
"description": "Prioritisation tool using the relative weight method with DuckDB",
"main": "dist/index.js",
"bin": {
"rw": "dist/index.js"
},
"scripts": {
"build": "node scripts/inject-version.mjs && tsc",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/index.js"
},
"files": [
"dist/",
"db/create.sql",
"db/model.dbml",
"README.md",
"LICENSE"
],
"keywords": [
"prioritization",
"backlog",
"relative-weight",
"duckdb",
"mcp",
"cli"
],
"author": "Sebastian Schürmann",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^14.0.3",
"duckdb": "^1.4.4"
},
"devDependencies": {
"@types/node": "^25.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}