-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"name": "twitter-ai-agent",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build ./src/index.ts --outdir ./dist --target node",
"start": "bun src/index.ts",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"test": "bun test",
"preCommit": "bun run format && bun run lint && bun run tailwind:build",
"tailwind:build": "npx tailwindcss -i ./public/tailwind.css -o ./public/style.css --minify",
"tailwind:watch": "npx tailwindcss -i ./public/tailwind.css -o ./public/style.css --watch './views/**/*.ejs'"
},
"author": "ChainGPT",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.9",
"ejs": "^3.1.10",
"hono": "^4.1.5",
"node-cron": "^3.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/bun": "^1.2.11",
"@types/node": "^22.14.1",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.4.21",
"bun-types": "^1.2.4",
"eslint": "^8.57.0",
"postcss": "^8.5.3",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
}
}