@gguf/coder 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +1 -44
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gguf/coder",
3
3
  "main": "dist/cli.js",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "description": "Coder",
6
6
  "keywords": [
7
7
  "ai",
@@ -21,17 +21,6 @@
21
21
  "build": "tsc && tsc-alias && chmod +x dist/cli.js",
22
22
  "dev": "tsc --watch",
23
23
  "start": "node dist/cli.js",
24
- "release:nix": "./scripts/update-nix-version.sh",
25
- "test:all": "./scripts/test.sh",
26
- "test:ava": "ava",
27
- "test:ava:coverage": "c8 ava",
28
- "test:format": "biome check --no-errors-on-unmatched .",
29
- "test:types": "tsc --noEmit",
30
- "test:lint": "biome lint .",
31
- "test:lint:fix": "biome check --write --unsafe .",
32
- "test:knip": "knip",
33
- "format": "biome check --write .",
34
- "format:check": "biome check .",
35
24
  "prepublishOnly": "pnpm run build",
36
25
  "prepare": "husky"
37
26
  },
@@ -69,8 +58,6 @@
69
58
  "xdg-basedir": "^5.1.0"
70
59
  },
71
60
  "devDependencies": {
72
- "@ava/typescript": "^6.0.0",
73
- "@biomejs/biome": "^1.9.4",
74
61
  "@types/ink-text-input": "^2.0.5",
75
62
  "@types/node": "^24.3.0",
76
63
  "@types/react": "^19.0.0",
@@ -80,40 +67,10 @@
80
67
  "chalk": "^5.2.0",
81
68
  "husky": "^9.1.7",
82
69
  "ink-testing-library": "^4.0.0",
83
- "knip": "^5.66.2",
84
- "lint-staged": "^16.2.7",
85
70
  "tsc-alias": "^1.8.16",
86
71
  "tsx": "^4.20.6",
87
72
  "typescript": "^5.0.3"
88
73
  },
89
- "lint-staged": {
90
- "*.{js,ts,jsx,tsx,json,md}": [
91
- "biome check --write --no-errors-on-unmatched"
92
- ]
93
- },
94
- "ava": {
95
- "extensions": {
96
- "ts": "module",
97
- "tsx": "module"
98
- },
99
- "nodeArguments": [
100
- "--import=tsx",
101
- "--no-warnings"
102
- ],
103
- "files": [
104
- "source/**/*.spec.ts",
105
- "source/**/*.spec.tsx",
106
- "!source/**/*-helpers.ts",
107
- "!source/**/test-helpers.ts"
108
- ],
109
- "workerThreads": false,
110
- "serial": true,
111
- "environmentVariables": {
112
- "NODE_ENV": "test",
113
- "LC_ALL": "en-US.UTF-8",
114
- "LANG": "en-US.UTF-8"
115
- }
116
- },
117
74
  "pnpm": {
118
75
  "overrides": {
119
76
  "glob@>=10.2.0 <10.5.0": ">=10.5.0",