-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 881 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 881 Bytes
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
{
"name": "@nermin99/priorityqueue",
"version": "1.0.7",
"description": "A simple and lightweight priority queue",
"author": "Nermin Skenderovic",
"license": "ISC",
"keywords": [
"priority queue",
"priority",
"queue"
],
"homepage": "https://github.com/nermin99/priorityqueue",
"repository": {
"type": "git",
"url": "https://github.com/nermin99/priorityqueue"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"lint": "prettier --check src",
"lint:fix": "prettier --write src",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup"
},
"devDependencies": {
"@types/node": "^17.0.4",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}