-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 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
46
47
48
49
{
"name": "@wahlstrommm/cmdkit",
"version": "0.1.3",
"description": "Terminal app for storing, searching, copying, and running reusable CLI commands.",
"type": "module",
"bin": {
"cmdkit": "bin/cmdkit.js"
},
"files": [
"bin",
"dist",
"commands",
"README.md",
"LICENSE"
],
"packageManager": "bun@1.3.10",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build ./src/index.ts --target=node --outfile ./dist/index.js",
"test": "bun test",
"validate": "bun run src/index.ts validate",
"check": "bun test && bun run src/index.ts validate",
"prepublishOnly": "bun run check && bun run build"
},
"keywords": [
"cli",
"tui",
"commands",
"terminal",
"clipboard",
"yaml",
"developer-tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wahlstrommm/cmdkit.git"
},
"homepage": "https://github.com/wahlstrommm/cmdkit#readme",
"bugs": {
"url": "https://github.com/wahlstrommm/cmdkit/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}