-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 895 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 895 Bytes
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
{
"name": "copa",
"version": "1.7.9",
"description": "CoPa: Prompt Engineering Templating Language and CLI Tool",
"repository": {
"type": "git",
"url": "https://github.com/romansky/copa.git"
},
"type": "commonjs",
"main": "./dist/copa.js",
"bin": "./dist/copa.js",
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"start": "node dist/copa.js",
"test": "vitest"
},
"author": "Roman Landenband",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^27.0.0",
"@types/node": "^25.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.22",
"commander": "^14.0.3",
"glob": "^13.0.1",
"minimatch": "^10.1.2",
"officeparser": "^6.0.4",
"pdfjs-dist": "^5.4.624",
"simple-git": "^3.30.0"
},
"files": [
"dist/**/*"
]
}