getprismo 0.1.4 → 0.1.6

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/package.json CHANGED
@@ -1,8 +1,25 @@
1
1
  {
2
2
  "name": "getprismo",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Local AI coding workflow scanner for Codex, Claude Code, Cursor, and token-waste diagnostics.",
5
- "license": "UNLICENSED",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/shanirsh/prismodev#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/shanirsh/prismodev.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/shanirsh/prismodev/issues"
13
+ },
14
+ "keywords": [
15
+ "ai",
16
+ "codex",
17
+ "claude-code",
18
+ "cursor",
19
+ "developer-tools",
20
+ "llm",
21
+ "token-optimization"
22
+ ],
6
23
  "publishConfig": {
7
24
  "access": "public"
8
25
  },
@@ -13,17 +30,17 @@
13
30
  "bin/",
14
31
  "lib/",
15
32
  "docs/prismodev-user-testing.md",
16
- "README.md"
33
+ "README.md",
34
+ "LICENSE",
35
+ "NOTICE"
17
36
  ],
18
37
  "engines": {
19
38
  "node": ">=18"
20
39
  },
21
40
  "scripts": {
22
- "dev": "./dev.sh",
23
- "dev:backend": "./dev.sh backend",
24
- "dev:frontend": "./dev.sh frontend",
25
- "demo:yc": "python3 scripts/yc_demo_prismo.py",
41
+ "demo": "node bin/prismo.js demo",
26
42
  "scan": "node bin/prismo.js scan",
43
+ "test": "node --test tests/prismo-dev-scan.test.js",
27
44
  "test:scan": "node --test tests/prismo-dev-scan.test.js"
28
45
  }
29
46
  }