-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.22 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@workglow/sec",
"type": "module",
"version": "0.0.28",
"repository": {
"type": "git",
"url": "https://github.com/workglow-dev/sec.git"
},
"bugs": {
"url": "https://github.com/workglow-dev/sec/issues"
},
"homepage": "https://workglow.dev",
"description": "Workglow SEC is an example of using the Workglow AI library to build a tool for retrieving SEC data.",
"scripts": {
"bunset": "bunset --patch --push --commit --tag",
"release": "bun run format && bun run build && bun run test && bun run prepack-check && bun run bunset",
"prepack-check": "bun ./scripts/checkPackedContents.ts",
"dev": "concurrently -c 'auto' -n 'sec:' 'bun:dev-*'",
"dev-js": "bun build --watch --target=bun --sourcemap=external --packages=external --outdir ./dist ./src/index.ts",
"dev-sec": "bun build --watch --target=bun --no-bundle --outfile ./dist/sec.js ./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/index.ts && bun run build-sec",
"build-sec": "bun build --target=bun --no-bundle --outfile ./dist/sec.js ./src/sec.ts && bun ./scripts/shebang-bin.ts ./dist/sec.js",
"build-types": "rm -f tsconfig.tsbuildinfo && tsc",
"use-source": "bun ./scripts/bunsrc.ts source",
"use-dist": "bun ./scripts/bunsrc.ts dist",
"link": "bun link",
"link-workglow": "bun ./scripts/link-workglow-packages.ts",
"test": "vitest run",
"typecheck-tests": "tsc -p tsconfig.test.json",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"bin": "./dist/sec.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"!**/*.map"
],
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@sroussey/parse-address": "^3.2.0",
"@sroussey/parse-full-name": "^3.0.0",
"@workglow/cli": "0.3.48",
"awesome-phonenumber": "^7.8.0",
"cheerio": "^1.2.0",
"cheerio-json-mapper": "^1.0.4",
"commander": "^15.0.0",
"compromise": "^14.16.0",
"csv-parse": "^7.0.2",
"fast-xml-parser": "^5.11.0",
"html-entities": "^2.6.0",
"pdf2json": "^4.0.3",
"pg": "^8.23.0",
"typebox": "1.3.16",
"words-to-numbers": "^1.5.1",
"workglow": "0.3.48",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/bun": "1.4.0",
"@types/pg": "^8.23.1",
"@types/xml2js": "^0.4.14",
"better-sqlite3": "^13.0.3",
"bunset": "1.0.13",
"concurrently": "^10.0.5",
"prettier": "3.9.6",
"vitest": "^4.1.11"
},
"trustedDependencies": [
"@huggingface/transformers",
"better-sqlite3",
"onnxruntime-node"
],
"private": false,
"publishConfig": {
"access": "public"
},
"overrides": {
"hono": "^4.13.2",
"sharp": "0.35.3",
"adm-zip": "^0.6.0",
"js-yaml": "^5.3.0",
"nanoid": "^6.0.1",
"qs": "^6.15.3",
"tar": "^7.5.22",
"fast-uri": "^4.1.2",
"ws": "^8.21.3",
"protobufjs": "^8.7.2"
},
"peerDependencies": {
"typescript": "^6.0.3"
}
}