-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.29 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
{
"name": "@platformatic/ai-warp",
"version": "0.5.1",
"main": "dist/index.js",
"type": "module",
"bin": {
"create-ai-warp": "./dist/cli/create.js",
"start-ai-warp": "./dist/cli/start.js"
},
"scripts": {
"create": "node ./dist/cli/create.js",
"start": "node ./dist/cli/start.js -c ./ai-warp-app/platformatic.json",
"build": "tsc --build && cp -r ./static ./dist/ && cp config.d.ts dist/",
"build:config": "npm run build && node ./dist/lib/schema.js --dump-schema > schema.json && json2ts > config.d.ts < schema.json",
"prepare": "npm run build:config",
"clean": "rm -fr ./dist",
"lint": "ts-standard | snazzy",
"lint:fix": "ts-standard --fix | snazzy",
"lint-md": "markdownlint-cli2 .",
"lint-md:fix": "markdownlint-cli2 --fix .",
"test": "npm run test:unit && npm run test:e2e && npm run test:types",
"test:unit": "npm run build && node --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout --import=tsx --test-concurrency=1 ./tests/unit/*",
"test:e2e": "node --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout --import=tsx --test-concurrency=1 ./tests/e2e/*",
"test:types": "tsd"
},
"engines": {
"node": ">=20.16.0"
},
"devDependencies": {
"@reporters/github": "^1.7.2",
"fastify": "^5.2.0",
"markdownlint-cli2": "^0.17.0",
"node-llama-cpp": "^2.8.16",
"snazzy": "^9.0.0",
"ts-standard": "^12.0.2",
"tsd": "^0.31.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.12",
"@fastify/error": "^4.0.0",
"@fastify/rate-limit": "^10.2.1",
"@fastify/static": "^8.0.3",
"@fastify/type-provider-typebox": "^5.1.0",
"@platformatic/config": "^2.1.1",
"@platformatic/generators": "^2.1.1",
"@platformatic/mistral-client": "^0.1.0",
"@platformatic/service": "^2.24.0",
"esmock": "^2.6.9",
"fast-json-stringify": "^6.0.0",
"fastify-user": "^1.4.0",
"json-schema-to-typescript": "^15.0.3",
"ollama": "^0.5.11",
"openai": "^4.76.3"
},
"license": "Apache-2.0",
"overrides": {
"minimatch": "^10.0.0"
},
"tsd": {
"directory": "tests/types"
}
}