constatic
Version:
Constatic is a CLI for creating and managing modern TypeScript projects, providing an organized structure and features that streamline development.
58 lines (57 loc) • 1.27 kB
JSON
{
"name": "awesome-bot-base",
"type": "module",
"main": "build/index.js",
"scripts": {
"check": "tsc --noEmit && echo ✔ Ok",
"build": "tsc",
"dev": "tsx --env-file=.env ./src/index.ts",
"dev:dev": "tsx --env-file=.env.dev ./src/index.ts",
"watch": "tsx --watch --env-file=.env ./src/index.ts",
"watch:dev": "tsx --watch --env-file=.env.dev ./src/index.ts",
"start": "node --env-file=.env .",
"start:dev": "node --env-file=.env.dev ."
},
"dependencies": {
"@constatic/base": "latest",
"@magicyan/discord": "1.6.3",
"chalk": "5.6.2",
"discord.js": "14.25.1",
"rou3": "0.7.10",
"zod": "4.1.11"
},
"devDependencies": {
"@types/node": "22.16.4",
"tsx": "4.19.3",
"typescript": "5.9.3"
},
"imports": {
"#env": [
"./build/env.js"
],
"#base": [
"./build/discord/index.js"
],
"#functions": [
"./build/functions/index.js"
],
"#database": [
"./build/database/index.js"
],
"#server": [
"./build/server/index.js"
],
"#menus": [
"./build/menus/index.js"
],
"#tools": [
"./build/tools/index.js"
],
"#lib/*": [
"./build/lib/*"
],
"#shared/*": [
"./build/shared/*"
]
}
}