-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "spellbook-forge",
"version": "0.0.3",
"description": "Make your LLM prompts executable and version controlled by adding an API layer to a git repository.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts src/**/*.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafalzawadzki/spellbook-forge.git"
},
"homepage": "https://github.com/rafalzawadzki/spellbook-forge#readme",
"keywords": [
"express",
"middleware",
"openai",
"langchain"
],
"author": "rafalzawadzki",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"js-yaml": "^4.1.0",
"langchain": "^0.0.53",
"simple-git": "^3.17.0"
}
}