-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 954 Bytes
/
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
{
"name": "priqo",
"version": "1.1.1",
"description": "A asynchronous priority queue implementation",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build:types": "tsc --project tsconfig.json",
"build": "bun build ./src/index.ts --minify --outdir=dist",
"test": "bun test",
"prepublishOnly": "bun run build:types && bun run build"
},
"keywords": [
"priority-queue",
"data-structure",
"typescript"
],
"author": "vibing",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nullsoepic/priqo.git"
},
"bugs": {
"url": "https://github.com/nullsoepic/priqo/issues"
},
"homepage": "https://github.com/nullsoepic/priqo#readme",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}