-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.05 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "synv",
"version": "0.1.5",
"description": "Sync-something CLI",
"type": "module",
"bin": {
"synv": "./dist/cli.js"
},
"files": [
"dist"
],
"keywords": [
"cli",
"sync",
"env"
],
"license": "MIT",
"author": "Nuanced Engineering",
"repository": {
"type": "git",
"url": "git+https://github.com/dak-engineering/synv.git"
},
"homepage": "https://github.com/dak-engineering/synv#readme",
"bugs": {
"url": "https://github.com/dak-engineering/synv/issues"
},
"scripts": {
"build": "bun run tsc -p tsconfig.build.json",
"dev": "bun run tsx src/cli.ts",
"lint": "bun run eslint src",
"lint:fix": "bun run eslint src --fix",
"test": "bun run vitest",
"test:ci": "bun run vitest run",
"test:ui": "bun run vitest --ui",
"test:coverage": "bun run vitest run --coverage",
"changeset": "bun run changeset",
"changeset:version": "bun run changeset version && bun install --lockfile-only",
"changeset:publish": "bun run changeset publish",
"release": "bun run build && bun run changeset:publish"
},
"packageManager": "bun@1.3.0",
"devDependencies": {
"@changesets/cli": "2.29.7",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.37.0",
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@types/node": "24.7.2",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"@typescript-eslint/types": "8.46.1",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"eslint": "9.37.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"happy-dom": "20.0.0",
"jiti": "2.6.1",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.6.14",
"tsx": "4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.46.1",
"vitest": "3.2.4"
},
"dependencies": {
"@inquirer/prompts": "7.8.6",
"chalk": "5.6.2",
"cmd-ts": "0.14.2",
"fuzzbunny": "1.0.1",
"ora": "9.0.0",
"remeda": "2.32.0"
}
}