-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.16 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
{
"name": "switch-dir",
"version": "0.0.0-semantically-released",
"description": "CLI for fast and interactive navigation between directories",
"type": "module",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"prepack": "npm run build",
"prebuild": "npm run ci && rimraf ./dist",
"build": "npm run compile",
"ci": "npm run check:style && npm run check:build",
"check:style": "npm run check:format && npm run check:lint",
"check:build": "npm run compile -- --noEmit",
"check:format": "prettier --check \"*.{js,cjs,mjs,ts,cts,mts}\" \"{src,test}/**/*.ts\"",
"check:lint": "eslint \"{src,test}/**/*.{js,ts}\"",
"style": "npm run format && npm run lint",
"format": "prettier --write \"*.{js,cjs,mjs,ts,cts,mts}\" \"{src,test}/**/*.ts\"",
"lint": "npm run check:lint -- --fix",
"compile": "tsc -p tsconfig.json",
"prepare": "husky"
},
"files": [
"dist"
],
"bin": {
"create-switch-dir": "dist/create-app/index.js"
},
"keywords": [
"cd",
"navigation",
"shell",
"terminal",
"file-system",
"directory",
"dir",
"interactive"
],
"author": "Lex Borisoff <lex@borisoff.dev>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/LexBorisoff/switch-dir.git"
},
"homepage": "https://github.com/LexBorisoff/switch-dir/tree/main#readme",
"bugs": {
"url": "https://github.com/LexBorisoff/switch-dir/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@lexjs/eslint-plugin": "^1.1.2",
"@types/node": "^22.10.7",
"@types/yargs": "^17.0.33",
"conventional-changelog-conventionalcommits": "^8.0.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^25.0.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"dependencies": {
"@lexjs/prompts": "^1.1.5",
"chalk": "^4.1.2",
"dotenv": "^16.4.7",
"execa": "^9.5.2",
"fs-hooks": "^1.1.2",
"type-fest": "^4.33.0",
"yargs": "^17.7.2"
}
}