olova 2.0.67 → 2.0.68
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/CHANGELOG.md +5 -5
- package/README.md +42 -42
- package/dist/compiler.d.ts +76 -1
- package/dist/compiler.js +13204 -630
- package/dist/compiler.js.map +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/core.js +400 -38
- package/dist/core.js.map +1 -1
- package/dist/global.d.ts +1 -1
- package/dist/global.js +54 -8
- package/dist/global.js.map +1 -1
- package/dist/index.js +13178 -640
- package/dist/index.js.map +1 -1
- package/dist/runtime.d.ts +8 -3
- package/dist/runtime.js +512 -32
- package/dist/runtime.js.map +1 -1
- package/dist/{signals-core-BdfWh1Yt.d.ts → signals-core-BWZ5zXK5.d.ts} +6 -5
- package/dist/vite.js +13178 -640
- package/dist/vite.js.map +1 -1
- package/package.json +83 -83
package/package.json
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "olova",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Olova component compiler, runtime, and Vite plugin",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"sideEffects": false,
|
|
8
|
-
"main": "./dist/index.js",
|
|
9
|
-
"module": "./dist/index.js",
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
14
|
-
"import": "./dist/index.js"
|
|
15
|
-
},
|
|
16
|
-
"./runtime": {
|
|
17
|
-
"types": "./dist/runtime.d.ts",
|
|
18
|
-
"import": "./dist/runtime.js"
|
|
19
|
-
},
|
|
20
|
-
"./core": {
|
|
21
|
-
"types": "./dist/core.d.ts",
|
|
22
|
-
"import": "./dist/core.js"
|
|
23
|
-
},
|
|
24
|
-
"./state": {
|
|
25
|
-
"types": "./dist/core.d.ts",
|
|
26
|
-
"import": "./dist/core.js"
|
|
27
|
-
},
|
|
28
|
-
"./global": {
|
|
29
|
-
"types": "./dist/global.d.ts",
|
|
30
|
-
"import": "./dist/global.js"
|
|
31
|
-
},
|
|
32
|
-
"./compiler": {
|
|
33
|
-
"types": "./dist/compiler.d.ts",
|
|
34
|
-
"import": "./dist/compiler.js"
|
|
35
|
-
},
|
|
36
|
-
"./vite": {
|
|
37
|
-
"types": "./dist/vite.d.ts",
|
|
38
|
-
"import": "./dist/vite.js"
|
|
39
|
-
},
|
|
40
|
-
"./package.json": "./package.json"
|
|
41
|
-
},
|
|
42
|
-
"files": [
|
|
43
|
-
"dist",
|
|
44
|
-
"README.md",
|
|
45
|
-
"CHANGELOG.md"
|
|
46
|
-
],
|
|
47
|
-
"publishConfig": {
|
|
48
|
-
"access": "public"
|
|
49
|
-
},
|
|
50
|
-
"scripts": {
|
|
51
|
-
"clean": "rimraf dist",
|
|
52
|
-
"build": "npm run clean && tsup --config tsup.config.ts",
|
|
53
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
54
|
-
"prepublishOnly": "npm run build",
|
|
55
|
-
"pack:check": "npm pack --dry-run"
|
|
56
|
-
},
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"@babel/generator": "^7.28.3",
|
|
59
|
-
"@babel/parser": "^7.28.4",
|
|
60
|
-
"@babel/traverse": "^7.28.4",
|
|
61
|
-
"@babel/types": "^7.28.4",
|
|
62
|
-
"@preact/signals-core": "^1.13.0",
|
|
63
|
-
"typescript": "^5.9.2"
|
|
64
|
-
},
|
|
65
|
-
"peerDependencies": {
|
|
66
|
-
"vite": "^7.0.0"
|
|
67
|
-
},
|
|
68
|
-
"peerDependenciesMeta": {
|
|
69
|
-
"vite": {
|
|
70
|
-
"optional": true
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"devDependencies": {
|
|
74
|
-
"@types/babel__generator": "^7.27.0",
|
|
75
|
-
"@types/babel__traverse": "^7.28.0",
|
|
76
|
-
"@types/node": "^24.4.0",
|
|
77
|
-
"rimraf": "^6.0.1",
|
|
78
|
-
"tsup": "^8.5.0"
|
|
79
|
-
},
|
|
80
|
-
"engines": {
|
|
81
|
-
"node": ">=18.18"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "olova",
|
|
3
|
+
"version": "2.0.68",
|
|
4
|
+
"description": "Olova component compiler, runtime, and Vite plugin",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./runtime": {
|
|
17
|
+
"types": "./dist/runtime.d.ts",
|
|
18
|
+
"import": "./dist/runtime.js"
|
|
19
|
+
},
|
|
20
|
+
"./core": {
|
|
21
|
+
"types": "./dist/core.d.ts",
|
|
22
|
+
"import": "./dist/core.js"
|
|
23
|
+
},
|
|
24
|
+
"./state": {
|
|
25
|
+
"types": "./dist/core.d.ts",
|
|
26
|
+
"import": "./dist/core.js"
|
|
27
|
+
},
|
|
28
|
+
"./global": {
|
|
29
|
+
"types": "./dist/global.d.ts",
|
|
30
|
+
"import": "./dist/global.js"
|
|
31
|
+
},
|
|
32
|
+
"./compiler": {
|
|
33
|
+
"types": "./dist/compiler.d.ts",
|
|
34
|
+
"import": "./dist/compiler.js"
|
|
35
|
+
},
|
|
36
|
+
"./vite": {
|
|
37
|
+
"types": "./dist/vite.d.ts",
|
|
38
|
+
"import": "./dist/vite.js"
|
|
39
|
+
},
|
|
40
|
+
"./package.json": "./package.json"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"dist",
|
|
44
|
+
"README.md",
|
|
45
|
+
"CHANGELOG.md"
|
|
46
|
+
],
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"clean": "rimraf dist",
|
|
52
|
+
"build": "npm run clean && tsup --config tsup.config.ts",
|
|
53
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
54
|
+
"prepublishOnly": "npm run build",
|
|
55
|
+
"pack:check": "npm pack --dry-run"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@babel/generator": "^7.28.3",
|
|
59
|
+
"@babel/parser": "^7.28.4",
|
|
60
|
+
"@babel/traverse": "^7.28.4",
|
|
61
|
+
"@babel/types": "^7.28.4",
|
|
62
|
+
"@preact/signals-core": "^1.13.0",
|
|
63
|
+
"typescript": "^5.9.2"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"vite": "^7.0.0"
|
|
67
|
+
},
|
|
68
|
+
"peerDependenciesMeta": {
|
|
69
|
+
"vite": {
|
|
70
|
+
"optional": true
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@types/babel__generator": "^7.27.0",
|
|
75
|
+
"@types/babel__traverse": "^7.28.0",
|
|
76
|
+
"@types/node": "^24.4.0",
|
|
77
|
+
"rimraf": "^6.0.1",
|
|
78
|
+
"tsup": "^8.5.0"
|
|
79
|
+
},
|
|
80
|
+
"engines": {
|
|
81
|
+
"node": ">=18.18"
|
|
82
|
+
}
|
|
83
|
+
}
|