-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "remix-flat-routes",
"version": "0.8.5",
"description": "Package for generating routes using flat convention",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"migrate-flat-routes": "dist/cli.cjs"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "jest",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prepare": "npm run typecheck && npm run build",
"typecheck": "tsc -b",
"migrate": "rm -rf ./app/flat-files ./app/flat-folders && npm run build && node ./dist/cli.cjs"
},
"keywords": [
"remix",
"react-router",
"flat-routes",
"routing-convention"
],
"author": {
"name": "Kiliman",
"email": "[email protected]",
"url": "https://kiliman.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/kiliman/remix-flat-routes.git"
},
"license": "MIT",
"dependencies": {
"fs-extra": "^11.2.0",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.10.1",
"all-contributors-cli": "^6.26.1",
"babel-jest": "^29.7.0",
"esbuild": "^0.25.0",
"esbuild-register": "^3.6.0",
"formdata-polyfill": "^4.0.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.3.6",
"typescript": "^5.7.2"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "jsdom"
},
"engines": {
"node": ">=16.6.0"
}
}