getprismo 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +110 -0
- package/bin/prismo.js +8 -0
- package/lib/prismo-dev-scan.js +2461 -0
- package/package.json +28 -0
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "getprismo",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Local AI coding workflow scanner for Codex, Claude Code, Cursor, and token-waste diagnostics.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"bin": {
|
|
10
|
+
"prismo": "bin/prismo.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"bin/",
|
|
14
|
+
"lib/",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=18"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "./dev.sh",
|
|
22
|
+
"dev:backend": "./dev.sh backend",
|
|
23
|
+
"dev:frontend": "./dev.sh frontend",
|
|
24
|
+
"demo:yc": "python3 scripts/yc_demo_prismo.py",
|
|
25
|
+
"scan": "node bin/prismo.js scan",
|
|
26
|
+
"test:scan": "node --test tests/prismo-dev-scan.test.js"
|
|
27
|
+
}
|
|
28
|
+
}
|