-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.02 KB
/
package.json
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
78
79
80
81
{
"name": "promptfusion",
"version": "1.0.2",
"description": "A CLI tool to concatenate all text files in your CWD with headers for GPT prompt engineering.",
"type": "module",
"main": "promptFusion.js",
"bin": {
"promptf": "./dist/cli.js"
},
"scripts": {
"build": "rimraf dist && tsup src/cli.ts --format esm",
"build:test": "rimraf test && tsup-node src/promptfusion.test.ts --format esm --outDir test",
"test": "npm run build:test && uvu test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agency-kit/promptfusion.git"
},
"keywords": [
"text",
"concatenate",
"CLI",
"Current Working Directory",
"GPT",
"tokens",
"tokenizer",
"ChatGPT",
"prompt engineering",
"token-count",
"text manipulation",
"file concatenation",
"command line interface",
"GPT-3",
"prompt generation",
"AI text processing",
"natural language processing",
"NLP tools",
"content assembly",
"bulk text processing",
"script automation",
"developer tools",
"code generation",
"data preprocessing",
"machine learning utilities",
"GPT prompt toolkit",
"text preprocessing",
"automated concatenation",
"programming productivity",
"text analysis tools",
"text transformation",
"file processing utility",
"openai integration",
"language model preparation",
"content generation",
"text batching",
"text utilities",
"software development tools",
"text parsing",
"batch processing"
],
"author": "Jacob Milhorn",
"license": "MIT",
"dependencies": {
"clipboardy": "^4.0.0",
"globby": "^13.x.x",
"gpt-tokenizer": "^2.1.2",
"pretty-file-tree": "^1.0.1",
"unicorn-magic": "^0.1.0"
},
"preferGlobal": true,
"devDependencies": {
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"@changesets/cli": "^2.27.1",
"@types/globby": "^9.1.0",
"@types/node": "^20.11.17",
"esbuild": "^0.20.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6"
}
}