-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 KB
/
package.json
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": "hello",
"version": "0.6.2",
"description": "👋 Hello from GitHub profiles. On the command line",
"homepage": "https://github.com/hello-js/hello#readme",
"bugs": {
"url": "https://github.com/hello-js/hello/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/hello-js/hello.git"
},
"license": "MIT",
"author": "Matt Venables <matt@venabl.es>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"hello": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup lib/index.ts lib/cli.ts --dts --clean",
"check": "concurrently bun:type-check bun:lint bun:format:check bun:test",
"clean": "git clean -xdf dist",
"dev": "tsx ./lib/cli.ts",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"lint": "eslint lib --ext .ts",
"outdated": "npx npm-check-updates --interactive --format group",
"prepublish": "bun run build",
"setup": "./bin/setup",
"start": "node dist/cli.js",
"test": "bun test",
"type-check": "tsc --pretty --noEmit"
},
"dependencies": {
"marked": "^10.0.0",
"marked-terminal": "^6.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.9",
"@types/node": "^20.9.3",
"@vercel/style-guide": "^5.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"tsx": "^4.2.0",
"typescript": "^5.3.2"
}
}