-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "pressable-cli",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"pressable": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"bun:dev": "bun src/index.ts",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"chalk": "^5.6.0",
"commander": "^14.0.0",
"dotenv": "^17.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.11",
"@types/commander": "^2.12.0",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitest/ui": "^4.1.3",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"ora": "^9.3.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.3"
}
}