@happyvertical/smrt-inventory 0.30.0

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/dist/types.js ADDED
@@ -0,0 +1,2 @@
1
+
2
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@happyvertical/smrt-inventory",
3
+ "version": "0.30.0",
4
+ "description": "Multi-location stock tracking for the SMRT framework — Sku, InventoryLocation, StockLevel, StockMovement, and a stock-mutation service",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "CLAUDE.md",
11
+ "AGENTS.md"
12
+ ],
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js"
17
+ },
18
+ "./manifest": "./dist/manifest.json",
19
+ "./manifest.json": "./dist/manifest.json"
20
+ },
21
+ "dependencies": {
22
+ "@happyvertical/logger": "^0.74.7",
23
+ "@happyvertical/sql": "^0.74.7",
24
+ "@happyvertical/smrt-core": "0.30.0",
25
+ "@happyvertical/smrt-tenancy": "0.30.0"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "25.0.9",
29
+ "typescript": "^5.9.3",
30
+ "vite": "^7.3.1",
31
+ "vitest": "^4.0.17",
32
+ "@happyvertical/smrt-vitest": "0.30.0"
33
+ },
34
+ "keywords": [
35
+ "smrt",
36
+ "inventory",
37
+ "stock",
38
+ "sku",
39
+ "warehouse",
40
+ "fulfillment",
41
+ "audit"
42
+ ],
43
+ "author": "HappyVertical",
44
+ "license": "MIT",
45
+ "publishConfig": {
46
+ "registry": "https://registry.npmjs.org",
47
+ "access": "public"
48
+ },
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/happyvertical/smrt.git",
52
+ "directory": "packages/inventory"
53
+ },
54
+ "scripts": {
55
+ "build": "vite build --mode library",
56
+ "build:watch": "vite build --mode library --watch",
57
+ "clean": "rm -rf dist",
58
+ "dev": "vite dev",
59
+ "test": "vitest run",
60
+ "test:watch": "vitest",
61
+ "typecheck": "tsc --noEmit",
62
+ "verify:pack": "node ../../scripts/verify-package-types-exports.js ."
63
+ }
64
+ }