@montra-interactive/deepstate 0.1.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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,KAAK,EAAE,QAAQ,EAA4B,MAAM,gBAAgB,CAAC;AAC3E,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC"}
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@montra-interactive/deepstate",
3
+ "version": "0.1.0",
4
+ "description": "Proxy-based reactive state management with RxJS. Deep nested state observation with full TypeScript support.",
5
+ "keywords": [
6
+ "state",
7
+ "state-management",
8
+ "rxjs",
9
+ "reactive",
10
+ "proxy",
11
+ "observable",
12
+ "store",
13
+ "deep",
14
+ "nested",
15
+ "typescript"
16
+ ],
17
+ "author": "Ronnie Magatti",
18
+ "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/Montra-Interactive/deepstate",
22
+ "directory": "packages/core"
23
+ },
24
+ "module": "dist/index.js",
25
+ "main": "dist/index.js",
26
+ "types": "dist/index.d.ts",
27
+ "type": "module",
28
+ "scripts": {
29
+ "build": "bun build ./src/index.ts ./src/helpers.ts --outdir ./dist --target node --external rxjs && tsc -p tsconfig.build.json --emitDeclarationOnly"
30
+ },
31
+ "exports": {
32
+ ".": {
33
+ "import": "./dist/index.js",
34
+ "require": "./dist/index.js",
35
+ "types": "./dist/index.d.ts"
36
+ },
37
+ "./helpers": {
38
+ "import": "./dist/helpers.js",
39
+ "require": "./dist/helpers.js",
40
+ "types": "./dist/helpers.d.ts"
41
+ }
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "src"
46
+ ],
47
+ "peerDependencies": {
48
+ "rxjs": "^7"
49
+ },
50
+ "dependencies": {
51
+ "rxjs": "^7.8.2"
52
+ }
53
+ }