generated from ivangabriele/template-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "firept",
"version": "0.3.1",
"license": "AGPL-3.0-only",
"description": "APIfy your local workspace to help AI LLMs orchestrate your daily tasks",
"type": "module",
"engines": {
"node": ">=20",
"npm": "10"
},
"bin": {
"fire": "./dist/cli.js",
"firept": "./dist/cli.js"
},
"scripts": {
"build": "rm -Rf ./dist && mkdir ./dist && yarn build:openapi && yarn build:schema && tsc -p ./tsconfig.build.json && chmod +x ./dist/cli.js",
"build:openapi": "node --loader ts-node/esm ./scripts/build/generateOpenApiFile.ts",
"build:schema": "node --loader ts-node/esm ./scripts/build/generateFireprConfigSchema.ts",
"bundle": "rm -Rf ./dist && yarn build && rollup --config ./config/rollup.config.js",
"dev": "E2E_TEST_WORKSPACE_PATH=$PWD/workspace-sample node --loader ts-node/esm -r dotenv/config --watch ./src/dev.ts",
"dist": "rm -Rf ./dist && yarn build && rollup --config ./config/rollup.config.js && yarn build && pkg ./dist/firept.cjs -d -o ./dist/forge -t node18-linux-x64",
"dist:linux": "yarn bundle && pkg ./dist/forge.cjs -d -o ./dist/forge-linux-x64 -t node18-linux-x64 && chmod +x ./dist/forge-linux-x64",
"dist:macos": "yarn bundle && pkg ./dist/forge.cjs -d -o ./dist/forge-macos-x64 -t node18-macos-x64 && chmod +x ./dist/forge-macos-x64",
"dist:windows": "yarn bundle && pkg ./dist/forge.cjs -d -o ./dist/forge-windows-x64 -t node18-windows-x64",
"install:global": "./scripts/dev/install_global.sh",
"start": "yarn build && node ./dist/cli.js start",
"startb": "yarn build && concurrently 'node ./dist/index.js' 'ngrok http --domain=firept.ngrok.app 3333'",
"test:e2e": "PUBLIC_URL=http://localhost:9999 jest --config ./config/jest.e2e.config.ts --runInBand",
"test:e2e:prepare": "yarn build && cd ./workspace-sample && npm i && cd ..",
"test:e2e:serve": "./scripts/test/serve_e2e.sh",
"test:e2e:watch": "yarn test:e2e --watch",
"test:lint": "biome check --write --files-ignore-unknown=true --no-errors-on-unmatched .",
"test:type": "tsc",
"test:unit": "UNIT_TEST_WORKSPACE_PATH=$PWD/workspace-sample jest --config ./config/jest.unit.config.ts --runInBand",
"test:unit:watch": "yarn test:unit --watch",
"preversion": "yarn build"
},
"dependencies": {
"@isaacs/ttlcache": "1.4.1",
"@koa/bodyparser": "5.1.1",
"@koa/cors": "5.0.0",
"@koa/router": "13.1.0",
"@octokit/auth-token": "5.1.1",
"@octokit/core": "6.1.2",
"@octokit/rest": "21.0.2",
"bhala": "3.0.4",
"del": "8.0.0",
"esm-path": "1.0.1",
"globby": "14.0.2",
"json-to-pretty-yaml": "1.2.2",
"koa": "2.15.3",
"koa-static": "5.0.0",
"publichost": "1.1.2",
"swagger-jsdoc": "6.2.8",
"yaml": "2.6.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ivangabriele/biome-config": "1.5.0",
"@ivangabriele/prettier-config": "5.0.1",
"@ivangabriele/tsconfig-node": "2.0.0",
"@swc/core": "1.7.42",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/json-to-pretty-yaml": "1.2.1",
"@types/koa": "2.15.0",
"@types/koa-bodyparser": "5.0.2",
"@types/koa-static": "4.0.4",
"@types/koa__cors": "5.0.0",
"@types/koa__router": "12.0.4",
"@types/node": "22.8.7",
"@types/swagger-jsdoc": "6.0.4",
"concurrently": "9.0.1",
"dotenv": "16.4.5",
"dotenv-vault": "1.26.2",
"execa": "9.5.1",
"jest": "29.7.0",
"ky": "1.7.2",
"pkg": "5.8.1",
"prettier": "3.3.3",
"rollup": "4.24.3",
"ts-json-schema-generator": "2.3.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"packageManager": "yarn@4.5.1",
"prettier": "@ivangabriele/prettier-config",
"author": {
"name": "Ivan Gabriele",
"email": "ivan.gabriele@gmail.com",
"url": "https://www.ivangabriele.com"
},
"bugs": {
"url": "https://github.com/ivangabriele/firept/issues"
},
"categories": [
"Other"
],
"homepage": "https://github.com/ivangabriele/firept#readme",
"icon": "./assets/icons/x512.png",
"keywords": [
"automation",
"chatgpt",
"openai"
],
"repository": {
"type": "git",
"url": "https://github.com/ivangabriele/firept.git"
}
}