-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.83 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
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
{
"name": "tego",
"private": true,
"version": "1.3.15",
"description": "",
"keywords": [
"tego",
"tachybase"
],
"homepage": "https://tachybase.org",
"bugs": {
"url": "https://github.com/tegojs/tego/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tegojs/tego",
"directory": "apps/tego"
},
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"tego": "./bin/tego.js"
},
"scripts": {
"build": "pkg . --no-bytecode --public-packages \"*\" --public --compress Brotli",
"build:debug": "pkg . --no-bytecode --public-packages \"*\" --public --debug",
"build:linux": "pkg --compress Brotli -t node22-linux-x64 .",
"build:linux:debug": "pkg --debug -t node22-linux-x64 .",
"build:mac": "pkg --compress Brotli -t node22-macos-arm64 .",
"build:mac:debug": "pkg --debug -t node22-macos-arm64 .",
"build:no-compress": "pkg . --no-bytecode --public-packages \"*\" --public",
"build:win": "pkg --compress Brotli -t node22-win-x64 .",
"build:win:debug": "pkg --debug -t node22-win-x64 ."
},
"dependencies": {
"@koa/cors": "5.0.0",
"@koa/multer": "3.1.0",
"@socketregistry/yocto-spinner": "1.0.19",
"@tachybase/acl": "^1.3.16",
"@tachybase/actions": "^1.3.16",
"@tachybase/auth": "^1.3.16",
"@tachybase/cache": "^1.3.16",
"@tachybase/data-source": "^1.3.16",
"@tachybase/database": "^1.3.16",
"@tachybase/evaluators": "^1.3.16",
"@tachybase/globals": "^1.3.16",
"@tachybase/loader": "^1.3.16",
"@tachybase/logger": "^1.3.16",
"@tachybase/resourcer": "^1.3.16",
"@tachybase/schema": "^1.3.16",
"@tachybase/server": "^1.3.16",
"@tachybase/utils": "^1.3.16",
"async-mutex": "0.3.0",
"axios": "1.13.1",
"cache-manager": "5.7.6",
"chalk": "^4.1.2",
"commander": "^9.5.0",
"dayjs": "1.11.13",
"dotenv": "16.5.0",
"execa": "^5.1.1",
"i18next": "25.1.2",
"jsonwebtoken": "8.5.1",
"koa": "^2.16.1",
"koa-bodyparser": "4.4.1",
"lodash": "4.17.21",
"mathjs": "^10.6.4",
"multer": "2.0.1",
"mysql2": "3.14.1",
"npm-registry-fetch": "18.0.2",
"pg": "^8.16.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"sequelize": "6.37.7",
"sqlite3": "5.1.7",
"tar": "7.4.3",
"tsx": "4.20.3",
"umzug": "3.8.2",
"winston": "3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@tachybase/cache": "^1.3.16",
"@tachybase/client": "^1.3.16",
"@tachybase/logger": "^1.3.16",
"@types/lodash": "4.17.18",
"@yao-pkg/pkg": "6.5.1"
},
"pkg": {
"targets": [
"node22-macos-x64",
"node22-macos-arm64",
"node22-win-x64",
"node22-linux-x64",
"node22-linux-arm64"
],
"assets": [
"presets/**/*"
],
"outputPath": "dist"
}
}