wcstack 1.31.0 → 1.32.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/package.json CHANGED
@@ -1,7 +1,24 @@
1
1
  {
2
2
  "name": "wcstack",
3
- "version": "1.31.0",
4
- "description": "Entry point for wcstack - 44 zero-dependency Web Components packages. Reactive data binding, declarative routing and 30+ Web APIs as HTML tags. Buildless: one CDN script tag per package. Run `npm view wcstack readme` for the full authoring guide.",
3
+ "version": "1.32.0",
4
+ "description": "wcstack SPA-core bundle: reactive state, router, fetch, storage and autoloader as one script tag with one SRI hash. Also the entry point for the wcstack ecosystem - run `npm view wcstack readme` for the full authoring guide.",
5
+ "type": "module",
6
+ "exports": {
7
+ "./auto": "./dist/auto.min.js"
8
+ },
9
+ "files": [
10
+ "README.md",
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "clean": "rimraf dist .tsc-out",
15
+ "build": "rimraf dist .tsc-out && tsc && rollup -c",
16
+ "test": "vitest run",
17
+ "test:watch": "vitest",
18
+ "test:coverage": "vitest run --coverage",
19
+ "lint": "eslint src",
20
+ "prepublishOnly": "npm run build && npm run test:coverage"
21
+ },
5
22
  "keywords": [
6
23
  "web-components",
7
24
  "custom-elements",
@@ -10,6 +27,7 @@
10
27
  "state-management",
11
28
  "router",
12
29
  "spa",
30
+ "bundle",
13
31
  "buildless",
14
32
  "zero-dependencies",
15
33
  "declarative",
@@ -26,7 +44,25 @@
26
44
  "url": "https://github.com/wcstack/wcstack/issues"
27
45
  },
28
46
  "license": "MIT",
29
- "files": [
30
- "README.md"
31
- ]
47
+ "devDependencies": {
48
+ "@eslint/js": "^9.39.1",
49
+ "@rollup/plugin-node-resolve": "^16.0.0",
50
+ "@rollup/plugin-terser": "^0.4.4",
51
+ "@rollup/plugin-typescript": "^11.1.6",
52
+ "@vitest/coverage-v8": "^4.0.15",
53
+ "@wcstack/autoloader": "file:../autoloader",
54
+ "@wcstack/fetch": "file:../fetch",
55
+ "@wcstack/router": "file:../router",
56
+ "@wcstack/state": "file:../state",
57
+ "@wcstack/storage": "file:../storage",
58
+ "eslint": "^9.39.1",
59
+ "globals": "^16.5.0",
60
+ "happy-dom": "^20.0.11",
61
+ "rimraf": "^6.0.1",
62
+ "rollup": "^4.22.4",
63
+ "tslib": "^2.8.1",
64
+ "typescript": "^5.9.3",
65
+ "typescript-eslint": "^8.49.0",
66
+ "vitest": "^4.0.15"
67
+ }
32
68
  }