-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "radix-ts",
"version": "1.0.2",
"description": "This package provides a powerful Radix data storage and retrieval library for TypeScript. It allows you to efficiently store and manage structured data using a Radix tree data structure.",
"author": "Dmitrii Baranov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orimay/radix-ts.git"
},
"bugs": {
"url": "https://github.com/orimay/radix-ts/issues"
},
"keywords": [
"radix",
"trie",
"tree",
"prefix",
"typescript",
"ts",
"sort",
"query"
],
"type": "module",
"main": "./dist/index",
"module": "./dist/index",
"types": "./dist/index",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"@types/faker": "^5.5.3",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"faker": "^5.5.3",
"prettier": "^3.0.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
},
"dependencies": {
"mutex-ts": "^1.0.2"
}
}