@almadar/std 15.14.0 → 15.14.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 +9 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/std",
3
- "version": "15.14.0",
3
+ "version": "15.14.2",
4
4
  "description": "Standard library operators for Almadar (math, string, array, etc.)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -44,16 +44,6 @@
44
44
  "registry": "https://registry.npmjs.org",
45
45
  "access": "public"
46
46
  },
47
- "scripts": {
48
- "build:embeddings": "tsx scripts/build-embeddings.ts",
49
- "build:knob-embeddings": "tsx scripts/build-knob-embeddings.ts",
50
- "build": "pnpm run build:embeddings && pnpm run build:knob-embeddings && tsup",
51
- "build:watch": "tsup --watch",
52
- "test": "vitest",
53
- "typecheck": "tsc --noEmit",
54
- "prepublishOnly": "pnpm run build",
55
- "prepare": "git config core.hooksPath .githooks"
56
- },
57
47
  "dependencies": {
58
48
  "@almadar/core": "^8.6.2"
59
49
  },
@@ -81,9 +71,12 @@
81
71
  "operators"
82
72
  ],
83
73
  "homepage": "https://github.com/almadar-io/almadar#readme",
84
- "pnpm": {
85
- "onlyBuiltDependencies": [
86
- "esbuild"
87
- ]
74
+ "scripts": {
75
+ "build:embeddings": "tsx scripts/build-embeddings.ts",
76
+ "build:knob-embeddings": "tsx scripts/build-knob-embeddings.ts",
77
+ "build": "pnpm run build:embeddings && pnpm run build:knob-embeddings && tsup",
78
+ "build:watch": "tsup --watch",
79
+ "test": "vitest",
80
+ "typecheck": "tsc --noEmit"
88
81
  }
89
- }
82
+ }