-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.44 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
103
104
105
106
{
"name": "@deckflow/deckops",
"version": "2.1.1",
"description": "Parse any document into an agent-operable representation. Parse once, convert repeatedly: PDF, PPTX, DOCX, Keynote and URLs into durable IR artifacts and Markdown.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.js",
"default": "./dist/browser/index.js"
},
"./schemas/*": "./schemas/*.json",
"./package.json": "./package.json"
},
"bin": {
"deckops": "dist/cli.js"
},
"files": [
"dist",
"schemas",
"skills",
"README.md",
"CHANGELOG.md",
"THIRD_PARTY_NOTICES",
"LICENSE"
],
"scripts": {
"build": "pnpm build:node && pnpm build:browser",
"build:node": "tsup --config tsup.config.ts",
"build:browser": "tsup --config tsup.browser.config.ts",
"dev": "tsup --watch",
"dev:browser": "tsup --config tsup.browser.config.ts --watch",
"test": "node scripts/generate-fixtures.mjs && vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "node scripts/generate-fixtures.mjs && vitest run tests/integration",
"test:browser": "vitest run tests/browser",
"typecheck": "tsc --noEmit",
"typecheck:browser": "tsc -p tsconfig.browser.json --noEmit",
"typecheck:browser-consumer": "tsc -p tsconfig.browser-consumer.json --noEmit",
"check:skill": "node scripts/check-skill.mjs",
"check:browser": "pnpm typecheck:browser && pnpm test:browser && pnpm build:browser && pnpm typecheck:browser-consumer && node scripts/check-browser.mjs",
"check": "pnpm check:skill && pnpm typecheck && pnpm typecheck:browser && pnpm test && pnpm build && pnpm typecheck:browser-consumer && node scripts/check-browser.mjs && node scripts/check-independence.mjs && pnpm check:read",
"check:independence": "node scripts/check-independence.mjs",
"check:package": "pnpm build && node scripts/check-package-size.mjs",
"browser:smoke": "node scripts/browser-smoke.mjs",
"prepack": "pnpm check:skill && pnpm build && pnpm typecheck:browser-consumer && node scripts/check-browser.mjs",
"conformance": "node scripts/conformance.mjs",
"check:read": "node scripts/check-read.mjs"
},
"keywords": [
"cli",
"parse",
"deckflow",
"pdf",
"pptx",
"docx",
"keynote",
"markdown",
"ir",
"document-parsing"
],
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/deckflow/deckops.git"
},
"homepage": "https://github.com/deckflow/deckops#readme",
"bugs": {
"url": "https://github.com/deckflow/deckops/issues"
},
"dependencies": {
"@deckflow/deckprobe": "2.6.0",
"axios": "1.19.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"eventsource-parser": "1.1.2",
"fflate": "^0.8.2",
"open": "^10.1.0",
"p-limit": "^5.0.0",
"parse5": "^7.3.0",
"pdf-lite-parse": "0.2.1",
"saxes": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"axios-mock-adapter": "^1.22.0",
"esbuild": "^0.27.7",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "pnpm@9.15.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}