-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.12 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
{
"name": "neo",
"version": "0.1.0",
"description": "Neo — a content-production Web client for pi with Notebook and artifact workflows.",
"type": "module",
"main": "dist/index.js",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/zane-byte-dev/neo.git"
},
"homepage": "https://github.com/zane-byte-dev/neo#readme",
"bugs": {
"url": "https://github.com/zane-byte-dev/neo/issues"
},
"scripts": {
"build": "npm run build --ws",
"build:agent": "npm --workspace @neo/agent run build",
"docs:check": "node scripts/check-doc-links.mjs",
"typecheck:agent": "tsc -p packages/agent/tsconfig.json",
"typecheck:app": "tsc -p packages/app/tsconfig.json",
"typecheck:web": "npm --workspace neo-web run typecheck",
"typecheck": "npm run typecheck:agent && npm run typecheck:app && npm run typecheck:web",
"lint": "eslint \"packages/*/src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"packages/*/src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"packages/*/src/**/*.{ts,tsx}\"",
"verify": "npm run lint && npm run typecheck && npm test",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"clean": "rm -rf packages/*/dist",
"dev:bot": "tsx packages/app/src/main.ts",
"start:bot": "node packages/app/dist/main.js",
"deploy": "npm run build && npm run web:build && pm2 start ecosystem.config.cjs",
"deploy:restart": "npm run build && npm run web:build && pm2 restart neo-bot",
"pm2:start": "npm run build && pm2 start ecosystem.config.cjs",
"pm2:stop": "pm2 stop all",
"pm2:restart": "pm2 restart all",
"pm2:logs": "pm2 logs",
"pm2:status": "pm2 status",
"web:dev": "npm --workspace neo-web run dev",
"web:build": "npm --workspace neo-web run build",
"web:install": "npm install --workspace neo-web"
},
"keywords": [
"telegram",
"bot",
"notes",
"neo",
"gemini"
],
"author": "zane-byte-dev",
"license": "MIT",
"dependencies": {
"@koa/bodyparser": "^6.1.0",
"@koa/router": "^15.4.0",
"koa": "^3.2.0",
"koa-static": "^5.0.0",
"mammoth": "^1.12.0",
"pdf-parse": "^2.4.5",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/koa": "^3.0.2",
"@types/koa-static": "^4.0.4",
"@types/node": "^20.11.0",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"prettier": "^3.9.4",
"supertest": "^7.2.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}