-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "samecmd",
"version": "0.1.1",
"description": "Universal per-project terminal commands",
"homepage": "https://github.com/behnamazimi/samecmd",
"bugs": "https://github.com/behnamazimi/samecmd/issues",
"license": "MIT",
"author": "Behnam Azimi",
"repository": {
"type": "git",
"url": "https://github.com/behnamazimi/samecmd.git"
},
"bin": {
"samecmd": "./src/cli.ts"
},
"type": "module",
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build --compile src/cli.ts --outfile bin/samecmd",
"build:all": "bash scripts/build-all.sh",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"format": "oxfmt .",
"check": "bun run typecheck && bun run lint && bun run format",
"check:ci": "bun run typecheck && bun run lint && oxfmt --check . && bun test"
},
"dependencies": {
"citty": "^0.1.6"
},
"devDependencies": {
"@types/bun": "latest",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"typescript": "^6.0.3"
}
}