forked from protocolus/promptforge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.2 KB
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
{
"name": "promptforge",
"version": "1.0.0",
"description": "A web-based prompt management system that stores LLM prompts as markdown files with SQLite indexing",
"keywords": ["llm", "prompts", "markdown", "ai", "claude", "gpt", "management", "search"],
"homepage": "https://github.com/protocolus/promptforge#readme",
"bugs": {
"url": "https://github.com/protocolus/promptforge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protocolus/promptforge.git"
},
"license": "ISC",
"author": "protocolus@gmail.com",
"scripts": {
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm start",
"build": "cd client && npm run build",
"start": "cd server && npm start",
"init-db": "cd server && npm run init-db",
"test": "cd server && npm test && cd ../client && npm test",
"lint": "cd server && npm run lint && cd ../client && npm run lint"
},
"devDependencies": {
"concurrently": "^8.2.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}