-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.53 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
{
"name": "spliterator",
"version": "4.0.0",
"description": "Line-delimited iterator library for CSV, NDJSON, and other delimited formats.",
"keywords": [
"csv",
"delimited",
"iterator",
"jsonl",
"line-delimited",
"ndjson"
],
"homepage": "https://github.com/sister-software/spliterator",
"bugs": {
"url": "https://github.com/sister-software/spliterator/issues"
},
"license": "MIT",
"contributors": [
{
"name": "Teffen Ellis",
"email": "teffen@sister.software"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/sister-software/spliterator.git"
},
"bin": "./out/node/cli/index.js",
"files": [
"out/index.d.ts",
"out/index.d.ts.map",
"out/index.js.map",
"out/index.js",
"out/lib/**/*",
"out/node/**/*",
"out/cli/**/*"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./out/index.js",
"./node/fs": "./out/node/fs/index.js",
"./merge-async-iterators": "./out/lib/merge-async-iterators.js",
"./parallel-map-runtime": "./out/lib/parallel-map-runtime.js",
"./segment-runtime": "./out/lib/segment-runtime.js",
"./segment-workers": "./out/lib/segment-workers.js",
"./test/utils": "./out/test/utils.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"check-types": "tsc --build .",
"clean": "tsc -b --clean",
"compile": "NODE_OPTIONS=\"--max-old-space-size=3000\" tsc -b",
"demo": "node out/examples/simple-iteration.js",
"lint": "run-s lint:oxlint lint:oxfmt",
"lint:oxlint": "oxlint",
"lint:oxfmt": "oxfmt --check .",
"lint:fix": "run-s fix:oxlint format",
"fix:oxlint": "oxlint --fix",
"format": "oxfmt .",
"release": "release-it",
"test": "yarn compile && vitest"
},
"dependencies": {
"yargs": "^18.0.0"
},
"devDependencies": {
"@sister.software/oxfmt-config": "^9.1.0",
"@sister.software/oxlint-config": "^9.1.0",
"@sister.software/tsconfig": "^9.0.0",
"@types/node": "^25.9.0",
"@types/yargs": "^17.0.35",
"change-case": "^5.4.4",
"colorette": "^2.0.20",
"npm-run-all": "^4.1.5",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"path-ts": "^1.0.5",
"release-it": "^17.10.0",
"type-fest": "^5.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"peerDependencies": {
"change-case": "^5.4.4",
"type-fest": "^5.6.0"
},
"peerDependenciesMeta": {
"change-case": {
"optional": true
},
"type-fest": {
"optional": true
}
},
"engines": {
"node": ">= 24.0.0"
},
"packageManager": "yarn@4.5.1",
"release-it": {
"npm": {
"publish": true
}
}
}