-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dsacjs",
"version": "0.0.2",
"description": "A high-performance JavaScript and TypeScript library offering a comprehensive set of efficient data structures. Simplify your algorithm implementation and data manipulation with optimized, easy-to-use tools.",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"workspaces": [
"docs"
],
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"build": "rm -rf dist && rm -rf types && tsc -p tsconfig.build.json && tsc -p tsconfig.types.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-logan/dsacjs.git"
},
"keywords": [
"data-structures",
"toolkit",
"collection",
"JavaScript",
"TypeScript",
"algorithms",
"performance",
"optimized",
"linked-list",
"tree",
"graph",
"heap",
"stack",
"queue",
"library",
"utilities",
"dsacjs",
"DsacJs"
],
"author": "Gabriel Logan",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-logan/dsacjs/issues"
},
"homepage": "https://gabriel-logan.github.io/DsacJs",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}