-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.57 KB
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
{
"name": "roto-rooter",
"version": "0.10.1",
"description": "Static analysis and functional verifier tool for React Router applications",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"rr": "./dist/cli.js",
"roto-rooter": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node scripts/build.mjs",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"react-router",
"static-analysis",
"linter",
"react",
"routing",
"lint"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/glideapps/roto-rooter.git"
},
"bugs": {
"url": "https://github.com/glideapps/roto-rooter/issues"
},
"homepage": "https://github.com/glideapps/roto-rooter#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.9",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"dependencies": {
"fastest-levenshtein": "^1.0.16"
}
}