-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.92 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
{
"name": "@eduardbar/drift",
"version": "1.5.0",
"description": "AI Code Audit CLI for merge trust in AI-assisted PRs",
"type": "module",
"main": "dist/index.js",
"bin": {
"drift": "bin/drift.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"benchmark": "node --import tsx src/benchmark.ts",
"video:studio": "remotion studio",
"video:list": "remotion compositions",
"video:render:promo": "remotion render DriftMarketingPulse out/drift-marketing-pulse.mp4",
"video:render:readme-gif": "remotion render DriftReadmeDemo assets/readme/drift-demo.gif --codec=gif --frames=0-149",
"smoke:repo": "node ./scripts/smoke-repo.mjs",
"check:runtime-policy": "node ./scripts/check-runtime-policy.mjs",
"check:docs-drift": "node ./scripts/check-docs-drift.mjs",
"check:perf-budget": "node ./scripts/check-performance-budget.mjs"
},
"keywords": [
"vibe-coding",
"technical-debt",
"ai",
"cli",
"typescript",
"static-analysis"
],
"author": "eduardbar",
"license": "MIT",
"engines": {
"node": "^20.0.0 || ^22.0.0"
},
"homepage": "https://github.com/eduardbar/drift#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/eduardbar/drift.git"
},
"bugs": {
"url": "https://github.com/eduardbar/drift/issues"
},
"dependencies": {
"commander": "^14.0.3",
"kleur": "^4.1.5",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@remotion/cli": "^4.0.443",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remotion": "^4.0.443",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}