@alpic-ai/api 0.0.0-staging.fb9e558 → 0.0.0-staging.fc7750c

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "0.0.0-staging.fb9e558",
3
+ "version": "0.0.0-staging.fc7750c",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -14,25 +14,40 @@
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
+ "nx": {
18
+ "targets": {
19
+ "build": {
20
+ "dependsOn": [
21
+ "^build"
22
+ ]
23
+ }
24
+ }
25
+ },
17
26
  "author": "Alpic",
18
27
  "license": "ISC",
19
28
  "dependencies": {
20
- "@orpc/contract": "^1.13.5",
21
- "zod": "^4.3.6"
29
+ "@orpc/contract": "^1.14.3",
30
+ "ms": "^2.1.3",
31
+ "zod": "^4.4.3"
22
32
  },
23
33
  "devDependencies": {
34
+ "@orpc/openapi": "^1.14.3",
35
+ "@orpc/zod": "^1.14.3",
24
36
  "@total-typescript/tsconfig": "^1.0.4",
37
+ "@types/ms": "^2.1.0",
25
38
  "shx": "^0.4.0",
26
- "tsdown": "^0.20.3",
27
- "typescript": "^5.9.3",
28
- "vitest": "^4.0.18"
39
+ "tsdown": "^0.22.0",
40
+ "typescript": "^6.0.3",
41
+ "vitest": "^4.1.6",
42
+ "@alpic-ai/domains": "0.0.0"
29
43
  },
30
44
  "scripts": {
31
45
  "build": "shx rm -rf dist && tsdown",
32
- "format": "biome check --write --error-on-warnings",
46
+ "format": "biome check --write --error-on-warnings .",
33
47
  "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
34
48
  "test:unit": "vitest run",
35
- "test:format": "prettier --check .",
36
- "test:type": "tsc --noEmit"
49
+ "test:format": "biome check --error-on-warnings .",
50
+ "test:type": "tsc --noEmit",
51
+ "publish:npm": "pnpm publish --tag \"${NPM_TAG}\" --access public --no-git-checks"
37
52
  }
38
53
  }