-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.05 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"name": "open-cli",
"version": "1.0.0",
"description": "Cross-platform project launcher for developers",
"main": "dist/index.min.js",
"scripts": {
"build": "turbo run bundle",
"bundle": "tsx src/build.ts",
"test": "pnpm build && node scripts/test.cjs",
"link": "pnpm link",
"unlink": "pnpm unlink",
"lint": "eslint . && prettier --check . && tsc --noEmit",
"format": "prettier --write ."
},
"bin": {
"o": "dist/index.min.js"
},
"keywords": [
"cli",
"launcher",
"productivity",
"open-cli"
],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.33.2",
"devDependencies": {
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"prettier": "^3.8.3",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2"
},
"dependencies": {
"@eslint/js": "^9.39.4",
"@inquirer/prompts": "^7.10.1",
"@types/eslint": "^9.6.1",
"chalk": "^5.6.2",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"globals": "^17.5.0",
"zod": "^4.3.6"
}
}