-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "@idrinth-api-bench/react-file-based-routes",
"version": "1.3.0",
"repository": "https://github.com/idrinth-api-bench/react-file-based-routes",
"bugs": {
"url": "https://github.com/idrinth-api-bench/issues"
},
"description": "A simple file based routing library, that does not force itself on you.",
"license": "MIT",
"type": "module",
"keywords": [
"react",
"routing",
"file-based-routing",
"library"
],
"bin": {
"react-file-based-routes-generate-routes": "bin/generate-routes.js",
"react-file-based-routes-generate-folders": "bin/generate-folders.js",
"irfbrgr": "bin/generate-routes.js",
"irfbrgf": "bin/generate-folders.js"
},
"private": false,
"devDependencies": {
"@types/html-minifier": "^4.0.5",
"@types/node": "^22.0.0",
"@types/react": "^18.2.48",
"typescript": "^5.3.3"
},
"dependencies": {
"@putout/minify": "^4.0.0",
"astring": "^1.8.6",
"estree-walker": "^3.0.3",
"fast-glob": "^3.3.2",
"html-minifier": "^4.0.0",
"magic-string": "^0.30.5",
"react": "^18.2.0"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"prepublishOnly": "npm run tsc",
"clear": "rm src/*.js",
"postpublish": "npm run clear"
}
}