-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 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
82
{
"name": "ts-askit",
"version": "1.1.0",
"description": "AskIt: Unified programming interface for programming with large language models (GPT-3.5 / GPT-4)",
"keywords": [
"llm",
"openai",
"gpt",
"gpt-3.5",
"gpt-4",
"llama",
"api",
"wrapper",
"library",
"framework",
"dsl",
"parser"
],
"homepage": "https://github.com/katsumiok/ts-askit#readme",
"bugs": {
"url": "https://github.com/katsumiok/ts-askit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/katsumiok/ts-askit.git"
},
"license": "MIT",
"author": "Katsumi Okuda",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./types": "./dist/types/index.js",
"./transform": "./dist/transform/index.js"
},
"typesVersions": {
"*": {
"types": [
"dist/types",
"dist/transform"
]
}
},
"bin": {
"ts-askit": "dist/cli/askit.js",
"askgen": "dist/cli/askgen.js"
},
"scripts": {
"generate:schema": "typescript-json-schema src/config.ts Config --required > dist/cli/askit.schema.json",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"test": "jest",
"build": "tsc",
"postinstall": "npx ts-patch install",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.6.1",
"jest-junit": "^16.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-json-schema": "^0.59.0"
},
"dependencies": {
"@types/crypto-js": "^4.1.1",
"@types/lodash": "^4.14.195",
"crypto-js": "^4.1.1",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"openai": "^3.3.0",
"transliteration": "^2.3.5",
"ts-patch": "^3.0.1"
}
}