-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (112 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (112 loc) · 2.85 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
107
108
109
110
111
112
113
{
"name": "@etl-corestream/core",
"version": "0.3.8",
"description": "Headless ETL orchestration engine for the web. Process massive files with stream-friendly async operations, real-time validation/transformation, and jank-free performance using XState and Signals architecture.",
"license": "MIT",
"author": "cristianm-developer <cristianm-developer@users.noreply.github.com>",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cristianm-developer/ETLCoreStream-Core.git"
},
"bugs": {
"url": "https://github.com/cristianm-developer/ETLCoreStream-Core/issues"
},
"homepage": "https://github.com/cristianm-developer/ETLCoreStream-Core#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"test": "vitest",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"publish:npm": "npm run build && npm publish"
},
"dependencies": {
"lodash-es": "^4.18.1",
"papaparse": "^5.5.3",
"streamsaver": "^2.0.6",
"xstate": "^5.30.0",
"@preact/signals-core": "^1.14.1"
},
"peerDependencies": {
"@xstate/graph": "^3.0.4",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@preact/signals-core": "^1.14.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.6.0",
"@types/papaparse": "^5.5.2",
"@types/streamsaver": "^2.0.5",
"@xstate/graph": "^3.0.4",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.8.3",
"terser": "^5.46.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.59.1",
"vite": "^8.0.8",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-static-copy": "^4.1.0",
"vitest": "^4.1.4"
},
"keywords": [
"etl",
"streaming",
"xstate",
"signals",
"csv",
"headless",
"data-processing",
"reactive",
"typescript",
"orchestration",
"etl-orchestration",
"massive-data",
"large-files",
"performance",
"asynchronous",
"stream-processing",
"data-streams",
"file-processing",
"event-driven",
"state-machine",
"real-time",
"high-performance",
"async",
"data-pipeline",
"corestream",
"backend",
"frontend"
]
}