-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.89 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
{
"name": "discoflix",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"discoflix": "src/server/server.js"
},
"directories": {
"test": "tests"
},
"scripts": {
"start": "node src/server/server.js",
"inspect": "node --inspect src/server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "npx prisma migrate dev && npx prisma generate",
"vendor": "node scripts/vendor.js",
"build:binary": "pkg . --no-bytecode --public --public-packages \"*\" --output dist/discoflix",
"reset": "rm -rf .cache && rm -rf ./prisma/disco.db* ./prisma/migrations && npx prisma migrate dev --name init && npx prisma generate"
},
"pkg": {
"scripts": [
"src/**/*.js",
"logging.js"
],
"assets": [
"public/**/*",
"src/server/views/**/*",
"prisma/schema.prisma",
"prisma/migrations/**/*",
"node_modules/.prisma/client/**/*",
"node_modules/axios/dist/node/**/*",
"node_modules/@anthropic-ai/sdk/**/*"
]
},
"keywords": [],
"author": "Nicholas Heyer",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.111.0",
"@epegzz/winston-dev-console": "^1.3.4",
"@koa/multer": "^4.0.0",
"@prisma/client": "~6.2.1",
"axios": "^1.7.9",
"class-logger": "^1.3.0",
"discord.js": "^14.26.5",
"dotenv": "^16.4.7",
"http-terminator": "^3.2.0",
"jsdoc": "^4.0.4",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-pug": "^5.1.1",
"koa-router": "^13.0.1",
"koa-static": "^5.0.0",
"koa-static-cache": "^5.1.4",
"koa-views": "^8.1.0",
"lodash": "^4.17.21",
"multer": "^2.2.0",
"pug": "^3.0.2",
"util": "^0.12.5",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.21.0",
"prisma": "~6.2.1"
}
}