-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.6 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.6 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "okai",
"type": "module",
"version": "0.0.49",
"bin": "./bin/okai.js",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "AI-powered code generation tool for ServiceStack Apps. Generate TypeScript data models, C# APIs, migrations, and UI components from natural language prompts using LLMs.",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"scripts": {
"build": "npm run clean && tsc && cp ./src/api.d.ts ./dist",
"clean": "rm -rf ./dist",
"test": "node --test --experimental-strip-types test/*.test.ts test/*.test.js",
"bump": "npm version patch && git push origin main --follow-tags",
"bump:minor": "npm version minor && git push origin main --follow-tags",
"bump:major": "npm version major && git push origin main --follow-tags",
"release": "gh release create v$(node -p \"require('./package.json').version\") --title v$(node -p \"require('./package.json').version\") --generate-notes"
},
"files": [
"dist",
"bin"
],
"engines": {
"node": ">=24.0.0"
},
"keywords": [
"servicestack",
"api",
"crud",
"generator"
],
"homepage": "https://servicestack.net",
"author": "ServiceStack, Inc. (https://servicestack.net)",
"repository": {
"type": "git",
"url": "git+https://github.com/ServiceStack/okai"
},
"bugs": "https://forums.servicestack.net",
"dependencies": {
"blessed": "^0.1.81"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/node": "^22.10.1",
"bump": "^0.2.5",
"typescript": "^5.7.2"
}
}