forked from aljazsim/cli-typescript-code-organizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "tsco-cli",
"version": "2.0.12",
"author": "Aljaz Simonic",
"license": "MIT",
"description": "TypeScript Code Organizer CLI",
"homepage": "https://github.com/aljazsim/cli-typescript-code-organizer",
"icon": "https://github.com/aljazsim/cli-typescript-code-organizer/raw/master/doc/logo.png",
"repository": {
"type": "git",
"url": "git+https://github.com/aljazsim/cli-typescript-code-organizer.git"
},
"keywords": [
"TypeScript",
"code",
"organize",
"format",
"members",
"properties",
"methods",
"regions"
],
"scripts": {
"build": "npx tsc",
"start": "npx tsx ./src/index.ts",
"test": "vitest",
"lint": "npx eslint",
"prepare": "husky",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"type": "module",
"main": "./src/index.js",
"bin": {
"tsco": "./out/src/index.js"
},
"dependencies": {
"glob": "^11.0.1",
"typescript": "^5.7.3",
"watcher": "^2.3.1",
"wildcard-match": "^5.1.4"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/glob": "8.1.0",
"@types/node": "^22.10.5",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}