generated from jasonsturges/typescript-npm-package
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "promptable",
"version": "0.0.5",
"description": "Compose LLM Apps in Typescript",
"author": "Promptable.ai",
"homepage": "https://github.com/promptable/Promptable.js",
"repository": {
"type": "git",
"url": "https://github.com/promptable/Promptable.js"
},
"license": "ISC",
"keywords": [
"typescript",
"npm",
"package",
"boilerplate",
"LLMs",
"langchain",
"GPT",
"ai",
"library",
"composability",
"chaining"
],
"main": "dist/cjs/Promptable.js",
"module": "dist/esm/Promptable.js",
"browser": "dist/browser/Promptable.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prebuild:types": "rimraf ./build",
"build:types": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
"predocs": "rimraf ./docs",
"docs": "typedoc src --out docs",
"clean": "rimraf ./build ./dist ./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"eslint": "^8.8.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.66.1",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"axios": "^1.2.1"
}
}