@itsautomata/prism 0.1.1 → 0.2.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 +71 -24
- package/dist/cli.js +1210 -300
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itsautomata/prism",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "local-first AI coding assistant, runs against ollama or openrouter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"author": "
|
|
7
|
+
"author": "itsautomata",
|
|
8
8
|
"homepage": "https://github.com/itsautomata/prism#readme",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
"check": "tsc --noEmit",
|
|
44
44
|
"test": "vitest run",
|
|
45
45
|
"test:watch": "vitest",
|
|
46
|
+
"link:dev": "npm run build && npm link",
|
|
47
|
+
"unlink:dev": "npm unlink -g @itsautomata/prism && npm install -g @itsautomata/prism",
|
|
46
48
|
"prepublishOnly": "npm run check && npm test && npm run build"
|
|
47
49
|
},
|
|
48
50
|
"dependencies": {
|
|
@@ -59,7 +61,6 @@
|
|
|
59
61
|
"zod": "^3.23.0"
|
|
60
62
|
},
|
|
61
63
|
"devDependencies": {
|
|
62
|
-
"@types/cheerio": "^0.22.35",
|
|
63
64
|
"@types/node": "^22.0.0",
|
|
64
65
|
"@types/react": "^19.2.14",
|
|
65
66
|
"@types/turndown": "^5.0.6",
|