-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.86 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.86 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
68
69
70
71
72
73
74
75
76
77
{
"name": "@itsautomata/prism",
"version": "0.2.0",
"description": "local-first AI coding assistant, runs against ollama or openrouter",
"type": "module",
"license": "MIT",
"author": "itsautomata",
"homepage": "https://github.com/itsautomata/prism#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/itsautomata/prism.git"
},
"bugs": {
"url": "https://github.com/itsautomata/prism/issues"
},
"keywords": [
"cli",
"ai",
"ollama",
"openrouter",
"agent",
"tools",
"local-first",
"coding-assistant"
],
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": {
"prism": "./dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup && chmod +x dist/cli.js && npm run cp:wasms",
"build:wasms": "./scripts/build-wasms.sh",
"cp:wasms": "./scripts/cp-wasms.sh",
"dev": "tsx src/cli.ts",
"check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"link:dev": "npm run build && npm link",
"unlink:dev": "npm unlink -g @itsautomata/prism && npm install -g @itsautomata/prism",
"prepublishOnly": "npm run check && npm test && npm run build"
},
"dependencies": {
"cheerio": "^1.2.0",
"got": "^15.0.3",
"gpt-tokenizer": "^3.4.0",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"ipaddr.js": "^2.3.0",
"mammoth": "^1.12.0",
"react": "^19.2.4",
"turndown": "^7.2.4",
"web-tree-sitter": "^0.26.8",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"@types/turndown": "^5.0.6",
"ink-testing-library": "^4.0.0",
"tree-sitter-cli": "^0.26.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^4.1.5"
}
}