@itsautomata/prism 0.1.1
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/LICENSE +21 -0
- package/README.md +243 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +4876 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@itsautomata/prism",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "local-first AI coding assistant, runs against ollama or openrouter",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Automata",
|
|
8
|
+
"homepage": "https://github.com/itsautomata/prism#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/itsautomata/prism.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/itsautomata/prism/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"cli",
|
|
18
|
+
"ai",
|
|
19
|
+
"ollama",
|
|
20
|
+
"openrouter",
|
|
21
|
+
"agent",
|
|
22
|
+
"tools",
|
|
23
|
+
"local-first",
|
|
24
|
+
"coding-assistant"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=20"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
],
|
|
34
|
+
"bin": {
|
|
35
|
+
"prism": "./dist/cli.js"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup && chmod +x dist/cli.js",
|
|
42
|
+
"dev": "tsx src/cli.ts",
|
|
43
|
+
"check": "tsc --noEmit",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"test:watch": "vitest",
|
|
46
|
+
"prepublishOnly": "npm run check && npm test && npm run build"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"cheerio": "^1.2.0",
|
|
50
|
+
"got": "^15.0.3",
|
|
51
|
+
"gpt-tokenizer": "^3.4.0",
|
|
52
|
+
"ink": "^6.8.0",
|
|
53
|
+
"ink-spinner": "^5.0.0",
|
|
54
|
+
"ink-text-input": "^6.0.0",
|
|
55
|
+
"ipaddr.js": "^2.3.0",
|
|
56
|
+
"mammoth": "^1.12.0",
|
|
57
|
+
"react": "^19.2.4",
|
|
58
|
+
"turndown": "^7.2.4",
|
|
59
|
+
"zod": "^3.23.0"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@types/cheerio": "^0.22.35",
|
|
63
|
+
"@types/node": "^22.0.0",
|
|
64
|
+
"@types/react": "^19.2.14",
|
|
65
|
+
"@types/turndown": "^5.0.6",
|
|
66
|
+
"ink-testing-library": "^4.0.0",
|
|
67
|
+
"tsup": "^8.0.0",
|
|
68
|
+
"tsx": "^4.0.0",
|
|
69
|
+
"typescript": "^5.5.0",
|
|
70
|
+
"vitest": "^4.1.5"
|
|
71
|
+
}
|
|
72
|
+
}
|