-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
71 lines (71 loc) · 2.58 KB
/
package.json
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
{
"name": "tmv3",
"version": "1.0.0",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"crawl": "node ./apps/crawler/get_tweets.mjs",
"ext": "node ./apps/crawler/updatePollsAndAudioSpace.mjs",
"blurhash": "node ./apps/crawler/blurhash.mjs",
"update_query_id": "node ./apps/scripts/updateQueryIdList.mjs",
"update_api_path": "node ./apps/scripts/apiPathGenerator.mjs",
"api": "node ./apps/backend/app.mjs",
"devapi": "npx nodemon ./apps/backend/app.mjs",
"dbapi": "node ./apps/backend/app.mjs dbmode",
"model": "sagm -c './libs/assets/sagm_config.cjs'",
"get_account_list": "node ./apps/analytics/getAccountList.mjs",
"init": "node ./apps/scripts/initTwitterMonitor.mjs",
"test": "npx vitest",
"lint": "npx prettier --plugin-search-dir . --check .",
"format": "npx prettier --plugin-search-dir . --write .",
"build:cfworkers": "npx wrangler deploy --dry-run --outdir=../../dist/cfworkers -c apps/cfworkers/wrangler.toml",
"build:rollup": "npx rollup -c rollup.config.js",
"build": "npm run build:rollup && npm run build:cfworkers",
"rebuild": "npm run clean && npm run build",
"clean": "rm -rf dist/*",
"clean:win": "del dist/*"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.5.5",
"nodemon": "^3.1.4",
"pg-hstore": "^2.3.4",
"prettier": "^3.3.3",
"rollup": "^4.21.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-cleanup": "^3.2.1",
"vitest": "^2.1.1",
"wrangler": "^3.78.3"
},
"dependencies": {
"@kdwnil/translator-utils": "github:BANKA2017/translator-utils#npm",
"@rollup/plugin-json": "^6.1.0",
"acorn": "^8.12.1",
"axios": "^1.7.7",
"blurhash": "^2.0.5",
"cld3-asm": "^4.0.0",
"cookie-parser": "^1.4.6",
"express": "^4.21.0",
"hpagent": "^1.2.0",
"itty-router": "^5.0.18",
"jsdom": "^25.0.0",
"lodash-es": "^4.17.21",
"m3u8-parser": "^7.2.0",
"mariadb": "^3.3.1",
"mysql2": "^3.11.3",
"otplib": "^12.0.1",
"redaxios": "^0.5.1",
"sequelize": "^6.37.3",
"sharp": "^0.33.5",
"sqlite3": "^5.1.7",
"twemoji-parser": "^14.0.0",
"ws": "^8.18.0"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}