-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 828 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 828 Bytes
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
{
"name": "tidyclass",
"version": "0.3.1",
"description": "Sorts classes and methods alphabetically",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"bin": {
"tidyclass": "dist/index.js"
},
"scripts": {
"test": "npx vitest",
"build": "tsc",
"dev": "bun run src/index.ts",
"dev:test": "bun run src/index.ts example.ts"
},
"keywords": ["class", "sorting"],
"author": "Firgrep",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.2.17",
"@types/node": "22.13.1",
"typescript": "5.8.3",
"vitest": "3.2.4"
},
"dependencies": {
"commander": "13.1.0",
"fast-glob": "3.3.3",
"ts-morph": "26.0.0"
}
}