-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "remix-kiss-routes",
"version": "0.1.4",
"description": "Build cleanly structured routes for Remix using folders.",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsc --project tsconfig.build.json --module CommonJS --outDir ./dist"
},
"keywords": [
"remix",
"remix-routes",
"file-based-routes"
],
"author": {
"name": "D3VL LTD",
"email": "[email protected]",
"url": "https://d3vl.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/d3vl/remix-kiss-routes.git"
},
"license": "MIT",
"devDependencies": {
"@remix-run/dev": "^2.0.0",
"@types/node": "^17.0.21",
"esbuild": "^0.14.36",
"esbuild-register": "^3.3.2",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^5.1.0"
},
"peerDependencies": {
"@remix-run/dev": "^2.0.0"
}
}