-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.54 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
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
{
"name": "spliterator",
"version": "1.6.2",
"description": "Line-delimited iterator library for CSV, NDJSON, and other delimited formats.",
"keywords": [
"csv",
"ndjson",
"jsonl",
"iterator",
"line-delimited",
"delimited"
],
"homepage": "https://github.com/sister-software/spliterator",
"bugs": {
"url": "https://github.com/sister-software/spliterator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sister-software/spliterator.git"
},
"license": "AGPL-3.0-only",
"contributors": [
{
"name": "Teffen Ellis",
"email": "[email protected]"
}
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./out/index.js",
"./node/fs": "./out/node/fs/index.js",
"./test/utils": "./out/test/utils.js"
},
"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/**/*"
],
"scripts": {
"demo": "node out/examples/simple-iteration.js",
"compile": "NODE_OPTIONS=\"--max-old-space-size=3000\" tsc -b",
"test": "vitest",
"lint": "run-s lint:prettier:check lint:eslint:check",
"lint:fix": "run-s lint:prettier:fix lint:eslint:fix",
"lint:prettier:check": "prettier --cache --check -u .",
"lint:prettier:fix": "prettier --cache --write -u .",
"lint:prettier": "eslint .",
"lint:eslint:check": "eslint .",
"lint:eslint:fix": "eslint --fix .",
"release": "release-it"
},
"prettier": "@sister.software/prettier-config",
"dependencies": {
"change-case": "^5.4.4",
"yargs": "^17.2.1"
},
"devDependencies": {
"@sister.software/eslint-config": "7.1.3",
"@sister.software/prettier-config": "7.1.3",
"@sister.software/tsconfig": "7.1.3",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"colorette": "^2.0.20",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"path-ts": "^1.0.5",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"release-it": "^17.10.0",
"type-fest": "^4.30.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "2.1.8"
},
"peerDependencies": {
"type-fest": "^4.30.0"
},
"peerDependenciesMeta": {
"type-fest": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 20.18.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release-it": {
"npm": {
"publish": true
}
}
}