forked from cdauth/json-stream-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "json-stream-es",
"description": "A streaming JSON parser/stringifier using web streams.",
"keywords": ["json", "jsonl", "json-seq", "streams", "web-streams", "whatwg-streams"],
"version": "1.2.0",
"author": "Candid Dauth <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/cdauth/json-stream-es"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "8",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-node": "^1.5.3",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.5.3"
},
"scripts": {
"build": "vite build",
"clean": "rimraf dist out out.node",
"test": "vitest run",
"test-watch": "vitest",
"check-types": "tsc -b tsconfig.node.json --emitDeclarationOnly",
"lint": "eslint --ext .js,.mjs,.cjs,.ts,.mts,.cts ./"
},
"bugs": "https://github.com/cdauth/json-stream-es/issues",
"license": "BSD-2-Clause",
"main": "./dist/json-stream-es.mjs",
"types": "./dist/json-stream-es.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"packageManager": "[email protected]"
}