-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 KB
/
package.json
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
{
"name": "@vizzu/csv-parser",
"description": "Vizzu plugin for CSV parsing",
"version": "0.8.1",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/mjs/index.js",
"default": "./dist/mjs/index.js"
}
},
"files": [
"dist/**",
"package.json"
],
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "run clear && node build/build.js",
"clear": "node build/clear.js",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizzuhq/vizzu-lib-ext#workspace=@vizzu/csv-parser"
},
"keywords": [
"vizzu",
"plugin",
"csv",
"csv parser"
],
"email": "[email protected]",
"license": "Apache-2.0",
"author": "Vizzu Inc.",
"bugs": {
"url": "https://github.com/vizzuhq/vizzu-lib-ext/issues"
},
"homepage": "https://github.com/vizzuhq/vizzu-lib-ext/tree/main/plugins/csv-parser#readme",
"devDependencies": {
"@babel/core": "^7.25.7",
"@types/csv-parse": "^1.2.2",
"@types/node": "^22.7.4",
"esbuild": "^0.24.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-polyfill-node": "^0.3.0",
"glob": "^11.0.0",
"ts-standard": "^12.0.2",
"typescript": "^5.5.2",
"vitest": "^2.1.2",
"vizzu": "~0.16.0"
},
"dependencies": {
"csv-parse": "^5.5.6"
},
"peerDependencies": {
"vizzu": "~0.16.0"
}
}