-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "utilitas",
"description": "Just another common utility for JavaScript.",
"version": "1997.1.11",
"private": false,
"homepage": "https://github.com/Leask/utilitas",
"main": "index.mjs",
"type": "module",
"engines": {
"node": ">=20.x"
},
"scripts": {
"start": "node index.mjs",
"debug": "node --inspect --trace-warnings debug.mjs",
"test": "node --inspect --trace-warnings test.mjs",
"updep": "npx npm-check-updates -u && npm install && wget https://raw.githubusercontent.com/Marak/colors.js/master/lib/styles.js -O ./lib/style.cjs",
"gitsync": "( git commit -am \"Released @ `date`\" || true ) && git pull && git push",
"pack": "./node_modules/.bin/webpack-cli --config webpack.config.mjs",
"build": "npm run updep && ( git commit -am 'update dependencies' || true ) && node build.mjs && npm run pack",
"pub": "npm run build && npm run gitsync",
"beta": "npm publish --tag beta"
},
"author": "Leask Wong <i@leaskh.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Leask/utilitas.git"
},
"overrides": {
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
},
"dependencies": {
"file-type": "^19.5.0",
"mathjs": "^13.1.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"@google-cloud/aiplatform": "^3.28.0",
"@google-cloud/speech": "^6.7.0",
"@google-cloud/storage": "^7.12.1",
"@google-cloud/text-to-speech": "^5.4.0",
"@google-cloud/vertexai": "^1.7.0",
"@google-cloud/vision": "^4.3.2",
"@google/generative-ai": "^0.17.1",
"@mozilla/readability": "^0.5.0",
"@ngrok/ngrok": "^1.4.1",
"@sentry/node": "^8.28.0",
"@sentry/profiling-node": "^8.28.0",
"acme-client": "^5.4.0",
"browserify-fs": "^1.0.0",
"buffer": "^6.0.3",
"fast-geoip": "^1.1.88",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^4.0.0",
"ioredis": "^5.4.1",
"js-tiktoken": "^1.0.14",
"jsdom": "^25.0.0",
"lorem-ipsum": "^2.0.8",
"mailgun.js": "^10.2.3",
"mailparser": "^3.7.1",
"mime": "^4.0.4",
"mysql2": "^3.11.0",
"node-mailjet": "^6.0.6",
"node-polyfill-webpack-plugin": "^4.0.0",
"office-text-extractor": "^3.0.3",
"ollama": "^0.5.8",
"openai": "^4.58.1",
"pdfjs-dist": "^4.6.82",
"pg": "^8.12.0",
"pgvector": "^0.2.0",
"ping": "^0.4.4",
"process": "^0.11.10",
"puppeteer": "^23.3.0",
"say": "^0.16.0",
"telegraf": "^4.16.3",
"telesignsdk": "^3.0.0",
"tesseract.js": "^5.1.1",
"twilio": "^5.3.0",
"url": "github:Leask/node-url",
"webpack-cli": "^5.1.4",
"whisper-node": "^1.1.1",
"wrangler": "^3.75.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
"youtube-transcript": "^1.2.1"
}
}