-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "radix-rapid",
"version": "0.0.2",
"description": "✨ Lightweight and fast router for JavaScript based on Radix Tree 🌱",
"author": "Dennis Ollhoff <contact@nyxb.xyz",
"license": "MIT",
"homepage": "https://💻nyxb.ws",
"repository": {
"type": "git",
"url": "git+https://github.com/nyxblabs/radix-rapid.git"
},
"bugs": {
"url": "https://github.com/nyxblabs/radix-rapid/issues"
},
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"scripts": {
"bench": "node ./benchmark/direct.mjs",
"bench:http": "node ./benchmark/http.mjs",
"bench:profile": "0x -o -D benchmark/.profile -- node ./benchmark/direct.mjs",
"build": "buildkarium",
"dev": "vitest",
"lint": "eslint --ext .ts,.mjs .",
"lint:fix": "eslint --fix --ext .ts,.mjs .",
"playground": "dynot ./playground.ts",
"release": "nyxr test && nyxr build && nyxlx changelogen@latest --release && git push --follow-tags && pnpm publish",
"test": "nyxr lint && vitest run"
},
"dependencies": {},
"devDependencies": {
"@nyxb/eslint-config": "0.0.53",
"@vitest/coverage-c8": "^0.30.1",
"0x": "^5.5.0",
"autocannon": "^7.10.0",
"benchmark": "^2.1.4",
"buildkarium": "^0.0.2",
"dynot": "latest",
"earlist": "latest",
"eslint": "^8.40.0",
"fetchwizard": "latest",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"files": [
"dist"
],
"keywords": []
}