forked from martsinlabs/csv-pipe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.05 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 4.05 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "csv-pipe",
"version": "2.1.0",
"description": "A small, fast, zero-dependency CSV encoder and parser for TypeScript and JavaScript. It converts between arrays of objects and RFC 4180-compliant CSV, with typed streaming in both directions, and runs in Node, browsers, Deno, Bun, and edge runtimes.",
"keywords": [
"csv",
"rfc4180",
"stringify",
"parser",
"encode",
"decode",
"export",
"convert",
"transform",
"stream"
],
"homepage": "https://github.com/martsinlabs/csv-pipe#readme",
"bugs": {
"url": "https://github.com/martsinlabs/csv-pipe/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martsinlabs/csv-pipe.git"
},
"license": "MIT",
"author": "Myroslav Martsin",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./browser": {
"import": {
"types": "./dist/browser.d.ts",
"default": "./dist/browser.js"
},
"require": {
"types": "./dist/browser.d.cts",
"default": "./dist/browser.cjs"
}
},
"./node": {
"import": {
"types": "./dist/node.d.ts",
"default": "./dist/node.js"
},
"require": {
"types": "./dist/node.d.cts",
"default": "./dist/node.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"browser": [
"./dist/browser.d.ts"
],
"node": [
"./dist/node.d.ts"
]
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"bench": "vitest bench --run",
"bench:gate": "node bench/assert-fastest.mjs",
"bench:track": "node bench/track.mjs",
"build": "tsup && npm run build:dts",
"build:dts": "dts-bundle-generator --config dts-bundle-generator.config.cjs && cp dist/index.d.ts dist/index.d.cts && cp dist/browser.d.ts dist/browser.d.cts && cp dist/node.d.ts dist/node.d.cts",
"check:package": "npm run build && publint --strict && attw --pack .",
"coverage": "vitest run --coverage",
"dev": "tsup --watch",
"docs:api": "typedoc",
"docs:build": "npm run docs:api && vitepress build docs",
"docs:dev": "npm run docs:api && vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"og": "node scripts/og.mjs",
"og:linkedin": "node scripts/og-linkedin.mjs",
"prepublishOnly": "npm run build",
"size": "npm run build && size-limit",
"smoke": "node scripts/smoke.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:examples": "tsc -p tsconfig.examples.json"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@resvg/resvg-js": "^2.6.2",
"@shikijs/vitepress-twoslash": "^4.2.0",
"@size-limit/preset-small-lib": "^12.1.0",
"@types/node": "^26.0.0",
"@types/papaparse": "^5.3.0",
"@vitest/coverage-v8": "^4.1.9",
"csv-parse": "^7.0.0",
"csv-spectrum": "^2.0.0",
"csv-stringify": "^6.8.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^10.5.0",
"fast-check": "^4.8.0",
"fast-csv": "^5.0.7",
"jsdom": "^29.1.1",
"papaparse": "^5.5.3",
"prettier": "^3.8.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^3.0.2",
"publint": "^0.3.21",
"size-limit": "^12.1.0",
"tinybench": "^6.0.2",
"tsup": "^8.5.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typedoc-vitepress-theme": "^1.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vitepress": "^1.6.4",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}