@askverdict/sdk 0.1.0 → 0.1.2

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 +14 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askverdict/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "AskVerdict TypeScript SDK — API client for askverdict.ai",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -11,7 +11,11 @@
11
11
  "import": "./dist/index.js"
12
12
  }
13
13
  },
14
- "files": ["dist", "README.md", "LICENSE"],
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
15
19
  "keywords": [
16
20
  "askverdict",
17
21
  "ai",
@@ -33,18 +37,17 @@
33
37
  "engines": {
34
38
  "node": ">=18"
35
39
  },
36
- "scripts": {
37
- "build": "tsc",
38
- "typecheck": "tsc --noEmit",
39
- "test": "vitest run",
40
- "clean": "rm -rf dist",
41
- "prepublishOnly": "pnpm run clean && pnpm run build"
42
- },
43
40
  "dependencies": {
44
- "@askverdict/types": "workspace:*"
41
+ "@askverdict/types": "0.1.2"
45
42
  },
46
43
  "devDependencies": {
47
44
  "typescript": "^5.7.3",
48
45
  "vitest": "^3.2.0"
46
+ },
47
+ "scripts": {
48
+ "build": "tsc",
49
+ "typecheck": "tsc --noEmit",
50
+ "test": "vitest run",
51
+ "clean": "rm -rf dist tsconfig.tsbuildinfo"
49
52
  }
50
- }
53
+ }