-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.56 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.56 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
{
"name": "pdformerai",
"version": "0.1.0",
"description": "AI-powered PDF form extractor and MUI/React form editor library",
"keywords": [
"pdf",
"openai",
"azure-openai",
"form",
"mui",
"react",
"form-editor",
"pdf-parser",
"ai"
],
"license": "MIT",
"author": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts,.tsx",
"prepublishOnly": "npm run build"
},
"dependencies": {
"openai": "^4.28.0",
"pdfjs-dist": "^4.4.168"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@mui/material": "^6.0.0",
"@mui/x-data-grid": "^7.0.0",
"@mui/x-date-pickers": "^7.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": "^6.0.0",
"@mui/x-data-grid": "^7.5.0",
"@mui/x-date-pickers": "^7.5.0",
"@types/node": "^20.11.0",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.3.0"
}
}