devwing 0.1.3 → 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.
package/package.json CHANGED
@@ -1,22 +1,12 @@
1
1
  {
2
2
  "name": "devwing",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "description": "DevWing.ai - Your AI Wingman in the Terminal",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "devwing": "./dist/index.js"
9
9
  },
10
- "scripts": {
11
- "dev": "tsx watch src/index.ts",
12
- "build": "tsup src/index.ts --format esm --dts --clean",
13
- "start": "node dist/index.js",
14
- "type-check": "tsc --noEmit",
15
- "lint": "eslint src --ext .ts",
16
- "test": "vitest",
17
- "prepublishOnly": "pnpm build && pnpm type-check",
18
- "prepack": "pnpm build"
19
- },
20
10
  "keywords": [
21
11
  "ai",
22
12
  "cli",
@@ -84,5 +74,14 @@
84
74
  "tsx": "^4.7.0",
85
75
  "typescript": "^5.3.3",
86
76
  "vitest": "^1.2.0"
77
+ },
78
+ "scripts": {
79
+ "dev": "tsx watch src/index.ts",
80
+ "build": "tsup src/index.ts --format esm --dts --clean",
81
+ "start": "node dist/index.js",
82
+ "type-check": "tsc --noEmit",
83
+ "lint": "eslint src --ext .ts",
84
+ "test": "vitest",
85
+ "validate": "node scripts/validate-config.js"
87
86
  }
88
- }
87
+ }