@codebelt/classy-store 0.1.1 → 0.1.3

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 +6 -25
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@codebelt/classy-store",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Class-based reactive state management — ES6 Proxy + immutable snapshots",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "git+https://github.com/codeBelt/classy-store.git"
7
+ "url": "git+https://github.com/codeBelt/classy-store.git",
8
+ "directory": "packages/classy-store"
8
9
  },
9
10
  "type": "module",
10
11
  "main": "./dist/index.cjs",
@@ -47,7 +48,8 @@
47
48
  }
48
49
  },
49
50
  "files": [
50
- "dist"
51
+ "dist",
52
+ "README.md"
51
53
  ],
52
54
  "scripts": {
53
55
  "---------- Dev --------------------------------------------------------": "",
@@ -57,26 +59,8 @@
57
59
  "---------- Test --------------------------------------------------------": "",
58
60
  "test": "bun test",
59
61
  "---------- Lint --------------------------------------------------------": "",
60
- "lint": "biome check",
61
- "lint:fix": "biome check --write",
62
62
  "typecheck": "tsc --noEmit",
63
- "---------- Release (Changesets) ----------------------------------------": "",
64
- "changeset": "changeset",
65
- "changeset:add": "changeset add",
66
- "changeset:version": "changeset version",
67
- "changeset:publish": "bun run build && changeset publish",
68
- "changeset:status": "changeset status",
69
- "prerelease:enter": "changeset pre enter",
70
- "prerelease:exit": "changeset pre exit",
71
- "---------- Docs (Docusaurus) ------------------------------------------": "",
72
- "demos:build": "cd examples/rendering && bun run build.ts --outdir=../../website/static/demos",
73
- "docs:dev": "bun run demos:build && cd website && bun run start",
74
- "docs:build": "bun run demos:build && cd website && bun run build",
75
- "docs:deploy": "cd website && bun run deploy",
76
- "---------- CI / Helper ------------------------------------------------": "",
77
- "checkall": "bun run lint:fix && bun run test && bun run typecheck",
78
- "clean": "find . -name node_modules -o -name .next -o -name dist -o -name build | xargs rm -rf",
79
- "deps": "bun update --latest",
63
+ "prepublishOnly": "cp ../../README.md .",
80
64
  "-----------------------------------------------------------------------": ""
81
65
  },
82
66
  "dependencies": {
@@ -91,9 +75,6 @@
91
75
  }
92
76
  },
93
77
  "devDependencies": {
94
- "@biomejs/biome": "2.4.0",
95
- "@changesets/changelog-github": "0.5.2",
96
- "@changesets/cli": "2.29.8",
97
78
  "@happy-dom/global-registrator": "20.6.1",
98
79
  "@types/bun": "1.3.9",
99
80
  "@types/react": "19.2.14",