-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.1 KB
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
{
"name": "@nermin99/priorityqueue",
"version": "1.1.0",
"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"
},
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./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",
"test": "npm run build && node --test"
},
"devDependencies": {
"@types/node": "^17.0.4",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}