-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "promptrix",
"author": "Steven Ickman",
"description": "A prompt layout engine for Large Language Models.",
"version": "0.6.0",
"license": "MIT",
"keywords": [
"gpt"
],
"bugs": {
"url": "https://github.com/Stevenic/promptrix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Stevenic/promptrix.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"typesVersions": {
"<3.9": {
"*": [
"_ts3.4/*"
]
}
},
"dependencies": {
"gpt-3-encoder": "1.1.4",
"yaml": "^1.10.0"
},
"resolutions": {},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/mocha": "^8.2.0",
"@types/assert": "^1.5.3",
"mocha": "10.2.0",
"nyc": "^15.1.0",
"ts-mocha": "10.0.0",
"typescript": "^4.2.3"
},
"scripts": {
"build": "tsc -b",
"clean": "npx shx rm -rf lib && npx shx rm -rf tsconfig.tsbuildinfo",
"test": "ts-mocha src/**/*.spec.ts --timeout 10000",
"test:debug": "ts-mocha src/**/*.spec.ts --inspect-brk",
"test:coverage": "nyc --reporter=html --reporter=text --reporter=text-summary npm test"
},
"files": [
"_ts3.4",
"lib",
"src",
"README.md"
]
}