-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "superqueue",
"type": "module",
"version": "0.0.0",
"main": "build/index.cjs",
"module": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"require": "./build/index.cjs",
"import": "./build/index.js"
}
},
"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/superqueue#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libkakashi/superqueue.git"
},
"bugs": "https://github.com/libkakashi/superqueue/issues",
"author": "Kakashi <[email protected]",
"devDependencies": {
"@types/bun": "^1.0.0",
"@types/node": "^22.7.5",
"bun-plugin-dts": "^0.2.1",
"gts": "^6.0.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=12.9.0"
}
}