-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "flint.js-example-bot",
"private": true,
"version": "0.1.0",
"description": "Example Fluxer bot using @flint.js/core",
"type": "module",
"main": "build/src/index.js",
"scripts": {
"predev": "pnpm flint-i18n generate",
"prebuild": "pnpm flint-i18n generate",
"dev": "tsx watch src/index.ts",
"build": "tsc && tsc-alias",
"check": "tsc --noEmit"
},
"keywords": [],
"author": "bizojs",
"license": "Apache-2.0",
"devDependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^25.5.2",
"prisma": "^7.6.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@flint.js/core": "workspace:*",
"@flint.js/i18n": "workspace:*",
"@flint.js/logger": "workspace:*",
"@flint.js/providers": "workspace:*",
"@flint.js/utils": "workspace:*",
"@fluxerjs/core": "^1.2.4",
"@prisma/adapter-better-sqlite3": "^7.6.0",
"@prisma/client": "^7.6.0",
"dotenv": "^17.3.1",
"ms": "^2.1.3"
}
}