@wcstack/state 1.8.6 → 1.9.1
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/README.ja.md +1380 -1350
- package/README.md +1488 -1350
- package/dist/auto.js +3 -3
- package/dist/auto.min.js +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +268 -9
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/package.json +72 -72
package/package.json
CHANGED
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@wcstack/state",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Reactive state management with declarative data binding for Web Components. Zero dependencies, buildless.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.esm.js",
|
|
7
|
-
"module": "./dist/index.esm.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.esm.js"
|
|
13
|
-
},
|
|
14
|
-
"./auto": "./dist/auto.min.js"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist"
|
|
18
|
-
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"clean": "rimraf dist .tsc-out",
|
|
21
|
-
"build": "rimraf dist .tsc-out && tsc && rollup -c",
|
|
22
|
-
"test": "vitest run",
|
|
23
|
-
"test:watch": "vitest",
|
|
24
|
-
"test:coverage": "vitest run --coverage",
|
|
25
|
-
"lint": "eslint src",
|
|
26
|
-
"version:patch": "npm version patch",
|
|
27
|
-
"version:minor": "npm version minor",
|
|
28
|
-
"version:major": "npm version major",
|
|
29
|
-
"prepublishOnly": "npm run build && npm run test:coverage"
|
|
30
|
-
},
|
|
31
|
-
"keywords": [
|
|
32
|
-
"web-components",
|
|
33
|
-
"state-management",
|
|
34
|
-
"reactive",
|
|
35
|
-
"data-binding",
|
|
36
|
-
"proxy",
|
|
37
|
-
"custom-elements",
|
|
38
|
-
"shadow-dom",
|
|
39
|
-
"buildless",
|
|
40
|
-
"zero-dependencies",
|
|
41
|
-
"declarative"
|
|
42
|
-
],
|
|
43
|
-
"author": "mogera551",
|
|
44
|
-
"homepage": "https://wcstack.github.io",
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "https://github.com/wcstack/wcstack.git",
|
|
48
|
-
"directory": "packages/state"
|
|
49
|
-
},
|
|
50
|
-
"bugs": {
|
|
51
|
-
"url": "https://github.com/wcstack/wcstack/issues"
|
|
52
|
-
},
|
|
53
|
-
"license": "MIT",
|
|
54
|
-
"devDependencies": {
|
|
55
|
-
"@eslint/js": "^9.39.1",
|
|
56
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
57
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
58
|
-
"@rollup/plugin-typescript": "^11.1.6",
|
|
59
|
-
"@vitest/coverage-v8": "^4.0.15",
|
|
60
|
-
"@vitest/ui": "^4.0.15",
|
|
61
|
-
"eslint": "^9.39.1",
|
|
62
|
-
"globals": "^16.5.0",
|
|
63
|
-
"happy-dom": "^20.0.11",
|
|
64
|
-
"rimraf": "^6.0.1",
|
|
65
|
-
"rollup": "^4.22.4",
|
|
66
|
-
"rollup-plugin-dts": "^6.1.1",
|
|
67
|
-
"tslib": "^2.8.1",
|
|
68
|
-
"typescript": "^5.9.3",
|
|
69
|
-
"typescript-eslint": "^8.49.0",
|
|
70
|
-
"vitest": "^4.0.15"
|
|
71
|
-
}
|
|
72
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@wcstack/state",
|
|
3
|
+
"version": "1.9.1",
|
|
4
|
+
"description": "Reactive state management with declarative data binding for Web Components. Zero dependencies, buildless.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.esm.js",
|
|
7
|
+
"module": "./dist/index.esm.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.esm.js"
|
|
13
|
+
},
|
|
14
|
+
"./auto": "./dist/auto.min.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"clean": "rimraf dist .tsc-out",
|
|
21
|
+
"build": "rimraf dist .tsc-out && tsc && rollup -c",
|
|
22
|
+
"test": "vitest run",
|
|
23
|
+
"test:watch": "vitest",
|
|
24
|
+
"test:coverage": "vitest run --coverage",
|
|
25
|
+
"lint": "eslint src",
|
|
26
|
+
"version:patch": "npm version patch",
|
|
27
|
+
"version:minor": "npm version minor",
|
|
28
|
+
"version:major": "npm version major",
|
|
29
|
+
"prepublishOnly": "npm run build && npm run test:coverage"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"web-components",
|
|
33
|
+
"state-management",
|
|
34
|
+
"reactive",
|
|
35
|
+
"data-binding",
|
|
36
|
+
"proxy",
|
|
37
|
+
"custom-elements",
|
|
38
|
+
"shadow-dom",
|
|
39
|
+
"buildless",
|
|
40
|
+
"zero-dependencies",
|
|
41
|
+
"declarative"
|
|
42
|
+
],
|
|
43
|
+
"author": "mogera551",
|
|
44
|
+
"homepage": "https://wcstack.github.io",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/wcstack/wcstack.git",
|
|
48
|
+
"directory": "packages/state"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/wcstack/wcstack/issues"
|
|
52
|
+
},
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@eslint/js": "^9.39.1",
|
|
56
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
57
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
58
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
59
|
+
"@vitest/coverage-v8": "^4.0.15",
|
|
60
|
+
"@vitest/ui": "^4.0.15",
|
|
61
|
+
"eslint": "^9.39.1",
|
|
62
|
+
"globals": "^16.5.0",
|
|
63
|
+
"happy-dom": "^20.0.11",
|
|
64
|
+
"rimraf": "^6.0.1",
|
|
65
|
+
"rollup": "^4.22.4",
|
|
66
|
+
"rollup-plugin-dts": "^6.1.1",
|
|
67
|
+
"tslib": "^2.8.1",
|
|
68
|
+
"typescript": "^5.9.3",
|
|
69
|
+
"typescript-eslint": "^8.49.0",
|
|
70
|
+
"vitest": "^4.0.15"
|
|
71
|
+
}
|
|
72
|
+
}
|