-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 813 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 813 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
{
"name": "@personofnote/diffuse",
"version": "0.1.5",
"private": false,
"license": "MIT",
"description": "Static risk analysis tool for code changes - surfaces breaking changes and usage patterns",
"author": "Jessica Martin",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"bin": {
"diffuse": "bin/diffuse.js"
},
"type": "module",
"scripts": {
"start": "ts-node index.ts",
"build": "tsc",
"prepare": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"ts-morph": "^26.0.0"
},
"devDependencies": {
"@types/node": "^24.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}