-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "@podley/sec",
"type": "module",
"version": "0.0.5",
"description": "Podley SEC is an example of using the Podley AI library to build a tool for retrieving SEC data.",
"scripts": {
"dev": "concurrently -c 'auto' -n 'sec:' 'bun:dev-*'",
"dev-js": "bun build --watch --target=bun --sourcemap=external --packages=external --outdir ./dist ./src/sec.ts",
"dev-types": "tsc --watch --preserveWatchOutput",
"build": "bun run build-clean && bun run build-js && bun run build-types",
"build-clean": "rm -fr dist/*",
"build-js": "bun build --target=bun --packages=external --outdir ./dist ./src/sec.ts",
"build-types": "rm -f tsconfig.tsbuildinfo && tsc",
"test": "bun test"
},
"bin": "./src/sec.js",
"files": [
"dist"
],
"dependencies": {
"@podley/cli": "0.0.32",
"@podley/job-queue": "0.0.36",
"@podley/sqlite": "0.0.32",
"@podley/storage": "0.0.32",
"@podley/task-graph": "0.0.32",
"@podley/tasks": "0.0.32",
"@podley/util": "0.0.32",
"@sinclair/typebox": "^0.34.41",
"@sroussey/parse-address": "^2.4.2",
"@sroussey/parse-full-name": "^2.0.0",
"awesome-phonenumber": "^7.5.0",
"cheerio": "^1.1.2",
"cheerio-json-mapper": "^1.0.4",
"commander": "^14.0.2",
"compromise": "^14.14.4",
"concurrently": "^9.2.1",
"csv-parse": "^5.6.0",
"fast-xml-parser": "^5.3.1",
"html-entities": "^2.6.0",
"pdf2json": "^3.2.2",
"words-to-numbers": "^1.5.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/csv-parse": "^1.2.5",
"@types/xml2js": "^0.4.14",
"@types/bun": "latest"
},
"trustedDependencies": [
"onnxruntime-node"
],
"private": true,
"peerDependencies": {
"typescript": "^5.9.3"
}
}