-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "@dandre3000/list",
"version": "0.1.3",
"license": "MIT",
"author": {
"name": "DeAundre Payne",
"email": "apps.fondling796@passinbox.com",
"url": "https://github.com/dandre3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dandre3000/list.git"
},
"description": "A double linked list class with an API similar to the Array class and a corresponding list node class.",
"keywords": [
"list",
"linked-list",
"doubly-linked-list",
"data-structure",
"collection",
"iterable",
"datastructure"
],
"files": ["./List.js", "./List.d.ts"],
"main": "./List.js",
"types": "./List.d.ts",
"scripts": {
"build": "bun build --entrypoints List.ts --outdir ./ --minify --keep-names",
"performance": "bun performance.js",
"prepack": "bun run build && tsc",
"prepublishOnly": "bun test"
},
"devDependencies": {
"benchmark": "^2.1.4",
"linked-list": "^3.1.0",
"typescript": "^5.9.2"
},
"type": "module"
}