-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 976 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
{
"name": "anandamide-pancake",
"version": "2.0.1",
"description": "Modern Data Structures Written in TS",
"scripts": {
"build": "yarn swc src --config-file .swcrc -d dist --log-watch-compilation --strip-leading-paths && yarn tsc --project tsconfig.json",
"vitest": "vitest"
},
"keywords": [
"data-structure",
"data structure",
"data",
"linked list",
"hash table",
"stacks",
"queues"
],
"authors": {
"Author": "Antonio Bourassa - Abourass - https://github.com/Abourass",
"Co-Author": "Kyle Hagadorn - KyleHagad - https://github.com/KyleHagad"
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.1.1",
"@magik_io/lint_golem": "^2.2.1",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.4.17",
"eslint": "^9.1.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"unbuild": "^2.0.0",
"vitest": "^1.5.2"
},
"packageManager": "[email protected]"
}