objs-core 1.1.0 → 2.0.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/EXAMPLES.md +1637 -0
- package/README.md +345 -71
- package/SKILL.md +500 -0
- package/objs.built.js +2655 -0
- package/objs.built.min.js +67 -0
- package/objs.d.ts +455 -0
- package/objs.js +3802 -0
- package/package.json +70 -37
- package/objs.1.1.js +0 -1205
- package/objs.1.1.min.js +0 -2
- package/objs.npm.1.1.js +0 -16
package/package.json
CHANGED
|
@@ -1,37 +1,70 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "objs-core",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"objs"
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "objs-core",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Lightweight (~6 kB) library for fast, AI-friendly front-end development: samples and state control, built-in store (createStore), routing, caching, and recording → Playwright tests. No build step; split design into samples and give them data and actions. Works standalone or alongside React; SSR and hydrate from server-rendered DOM. v2.0: exportPlaywrightTest(), refs, TypeScript definitions, recording in all builds.",
|
|
6
|
+
"homepage": "https://en.fous.name/objs/",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/foggysq/objs.git"
|
|
10
|
+
},
|
|
11
|
+
"author": "Roman Torshin <inbox@fous.name>",
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/foggysq/objs/issues"
|
|
15
|
+
},
|
|
16
|
+
"main": "./objs.built.js",
|
|
17
|
+
"module": "./objs.built.js",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"default": "./objs.built.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"objs.js",
|
|
25
|
+
"objs.built.js",
|
|
26
|
+
"objs.built.min.js",
|
|
27
|
+
"objs.d.ts",
|
|
28
|
+
"SKILL.md",
|
|
29
|
+
"EXAMPLES.md"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "node build.js",
|
|
33
|
+
"prepublishOnly": "node build.js",
|
|
34
|
+
"lint": "node node_modules/@biomejs/biome/bin/biome check examples/ objs.js",
|
|
35
|
+
"lint:fix": "node node_modules/@biomejs/biome/bin/biome check --write examples/ objs.js"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@biomejs/biome": "^2.4.6",
|
|
39
|
+
"esbuild": "^0.25.0"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"AI friendly",
|
|
43
|
+
"fast coding",
|
|
44
|
+
"micro-service",
|
|
45
|
+
"samples",
|
|
46
|
+
"state control",
|
|
47
|
+
"optimisation",
|
|
48
|
+
"auto test",
|
|
49
|
+
"reload tests",
|
|
50
|
+
"script cache",
|
|
51
|
+
"optimize",
|
|
52
|
+
"fast develop",
|
|
53
|
+
"preload scripts",
|
|
54
|
+
"preload styles",
|
|
55
|
+
"ajax",
|
|
56
|
+
"caching",
|
|
57
|
+
"dom control",
|
|
58
|
+
"react speed up",
|
|
59
|
+
"objs",
|
|
60
|
+
"server side render",
|
|
61
|
+
"hydrate",
|
|
62
|
+
"cookies",
|
|
63
|
+
"local storage",
|
|
64
|
+
"session storage",
|
|
65
|
+
"event delegation",
|
|
66
|
+
"redux",
|
|
67
|
+
"mobx",
|
|
68
|
+
"typescript"
|
|
69
|
+
]
|
|
70
|
+
}
|