-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.78 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
{
"name": "dsa-toolbox",
"version": "1.0.2",
"description": "A powerful toolkit for data structures and algorithms in TypeScript, designed for optimal performance and versatility. The toolkit provides implementations of various data structures and algorithms, with a focus on search and sort operations, caching, and probabilistic data structures.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"update-docs": "rimraf ./docs && typedoc",
"build": "rimraf ./dist && tsc",
"bench-ds": "nodemon --exec node --loader ts-node/esm ./benchmark-ds.ts -- --dev",
"bench-algo": "nodemon --exec node --loader ts-node/esm ./benchmark-algo.ts -- --dev",
"lint": "eslint --config ./eslint.config.mjs --cache-location ./.eslintcache \"./**/*.ts\" --cache",
"lint:fix": "eslint --config ./eslint.config.mjs --cache-location ./.eslintcache \"./**/*.ts\" --cache --fix",
"format": "prettier --write ./src",
"test": "vitest --coverage --watch false",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "=9.11.1",
"@trivago/prettier-plugin-sort-imports": "=4.3.0",
"@types/eslint__js": "=8.42.3",
"@types/node": "=22.9.0",
"@vitest/coverage-v8": "=2.0.5",
"@vitest/ui": "=2.0.5",
"chai": "=4.3.10",
"eslint": "=9.0.0",
"eslint-config-prettier": "=9.1.0",
"eslint-plugin-prettier": "=5.2.1",
"husky": "=9.1.6",
"nodemon": "=2.0.19",
"rimraf": "=6.0.1",
"ts-node": "=10.9.2",
"typedoc": "=0.26.11",
"typedoc-github-theme": "=0.1.2",
"typescript": "=5.6.2",
"typescript-eslint": "=8.7.0",
"vitest": "=2.0.5"
}
}