-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "json-stream",
"version": "0.0.0",
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"exports": {
".": {
"require": "./build/index.js",
"import": "./build/index.mjs",
"types": "./build/index.d.ts"
}
},
"description": "",
"scripts": {
"compile": "tsup src/index.ts --format cjs,esm --dts -d build",
"prepack": "npm run compile",
"prepare": "npm run compile",
"pretest": "npm run compile",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"posttest": "npm run lint"
},
"license": "MIT",
"homepage": "https://github.com/libkakashi/json-stream#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libkakashi/json-stream.git"
},
"bugs": "https://github.com/libkakashi/json-stream/issues",
"author": "Kakashi <[email protected]",
"devDependencies": {
"@types/bun": "^1.0.0",
"bun-plugin-dts": "^0.2.1",
"tsup": "^8.3.0",
"typescript": "^5.2.2",
"gts": "^6.0.2",
"@types/node": "^22.7.5"
},
"engines": {
"node": ">=12.9.0"
},
"dependencies": {
"gts": "^6.0.2",
"superqueue": "github:libkakashi/superqueue"
}
}