-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.4 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
{
"name": "@dosya-dev/cli",
"version": "0.0.2",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"main": "./src/index.ts",
"bin": {
"dosya": "./src/index.ts"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.2.0"
},
"scripts": {
"dev": "bun run src/index.ts",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:coverage": "bun test tests/unit --coverage --coverage-reporter=lcov",
"build": "bun build --compile src/index.ts --outfile dist/dosya && bun run scripts/sign.ts dist/dosya",
"build:linux-x64": "bun build --compile --target=bun-linux-x64 src/index.ts --outfile dist/dosya-linux-x64",
"build:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 src/index.ts --outfile dist/dosya-darwin-arm64 && bun run scripts/sign.ts dist/dosya-darwin-arm64",
"build:darwin-x64": "bun build --compile --target=bun-darwin-x64 src/index.ts --outfile dist/dosya-darwin-x64 && bun run scripts/sign.ts dist/dosya-darwin-x64",
"build:windows-x64": "bun build --compile --target=bun-windows-x64 src/index.ts --outfile dist/dosya-windows-x64.exe",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dosya-dev/shared": "file:../../packages/shared"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"typescript": "^5.7.0"
}
}