-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 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
{
"name": "project-list-cli",
"version": "1.6.10",
"description": "Quick navigation through projects",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"bin": {
"project-list": "bin/index.js"
},
"files": [
"dist",
"src",
"bin",
"README.md"
],
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "tsx --tsconfig ./tsconfig.json ./src/index.ts",
"dev:watch": "nodemon",
"lint": "biome format --write ./src && biome lint ./src",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc -p . --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "tsdown",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && git update-index --again",
"pre-push": "npm test",
"post-checkout": "npm ci"
}
},
"lint-staged": {
"*.ts": [
"biome format --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/avil13/project-list-cli"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@inquirer/prompts": "^7.5.3",
"@types/node": "^24.0.3",
"act-master": "^2.7.4",
"lint-staged": "^16.1.2",
"tsdown": "^0.12.7",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.3"
}
}