-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"name": "@pro-softs/excel-schemaflow-js",
"version": "2.0.0",
"description": "Excel parsing, header detection (heuristics + optional OpenAI), and multi-database schema export helpers",
"type": "module",
"main": "./dist/lib.js",
"types": "./dist/lib.d.ts",
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js",
"default": "./dist/lib.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:lib",
"build:lib": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.lib.json",
"build:backend": "node -e \"require('fs').rmSync('dist-backend',{recursive:true,force:true})\" && tsc -p tsconfig.backend.json",
"prepublishOnly": "npm run build:lib",
"start": "node dist-backend/server.js",
"dev": "tsx watch src/server.ts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"test": "echo \"Error: no test specified\" && exit 1",
"publish:dry-run": "npm publish --dry-run"
},
"keywords": [
"excel",
"xlsx",
"spreadsheet",
"ingest",
"openai",
"import",
"schema"
],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"exceljs": "^4.4.0"
},
"devDependencies": {
"openai": "^6.33.0",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.2",
"@types/pg": "^8.20.0",
"@types/uuid": "^10.0.0",
"cors": "^2.8.6",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"multer": "^2.1.1",
"pg": "^8.20.0",
"prisma": "^7.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}