-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.89 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.89 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
71
72
73
74
75
76
77
78
79
{
"name": "@runespoorstack/scrub",
"version": "1.0.1",
"description": "The automated janitor for your codebase. Stop the rot, clean the debt, and migrate with confidence.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"scripts": {
"prepare": "husky install",
"build": "tsup",
"test": "vitest run",
"lint": "biome lint",
"lint:fix": "biome lint --write --unsafe",
"lint:ci": "biome ci --formatter-enabled=false --assist-enabled=false --enforce-assist=false",
"format": "biome format",
"format:fix": "biome format --write",
"changelog:change": "rune change",
"changelog:verify": "rune verify",
"changelog:apply": "rune apply",
"unimported": "pnpm dlx unimported"
},
"bin": {
"scrub": "dist/index.js"
},
"dependencies": {
"@inquirer/confirm": "5.1.6",
"@inquirer/input": "4.1.6",
"@inquirer/select": "4.0.9",
"commander": "13.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@runespoorstack/changelog-manager": "0.10.1",
"@types/node": "24.0.13",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"tsup": "8.3.0",
"typescript": "5.4.5",
"vitest": "3.2.4"
},
"homepage": "https://github.com/runespoor-engineering/scrub/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/runespoor-engineering/scrub.git"
},
"bugs": {
"url": "https://github.com/runespoor-engineering/scrub/issues"
},
"author": {
"name": "BorysShulyak",
"email": "[email protected]",
"url": "https://github.com/BorysShulyak"
},
"maintainers": [
{
"name": "BorysShulyak",
"email": "[email protected]",
"url": "https://github.com/BorysShulyak"
}
],
"keywords": [
"cli",
"linter",
"runespoor",
"scrub",
"migration"
],
"license": "MIT",
"engines": {
"node": ">=20.9.0",
"pnpm": ">=9.15.3"
}
}