-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "@intoinside/praxis",
"version": "1.3.0",
"description": "**Praxis** is an intent-first development framework that bridges **Intent‑Driven Development (IDD)** and **Spec‑Driven Development (SDD)** into a single, coherent workflow.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"praxis": "dist/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"aedes": "^1.0.0",
"commander": "^14.0.2",
"inquirer": "^13.2.2",
"mqtt": "^5.15.0",
"uuid": "^13.0.0"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intoinside/Praxis.git"
},
"keywords": [
"idd",
"sdd",
"intent",
"spec",
"intent-driven",
"spec-driven",
"intent-driven development",
"spec-driven development"
],
"author": "Raffaele Intorcia",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/intoinside/Praxis/issues"
},
"homepage": "https://github.com/intoinside/Praxis#readme",
"devDependencies": {
"@types/node": "^25.0.10",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.0.18",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}