lilact 0.7.10 → 0.7.12
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 +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lilact",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.12",
|
|
4
4
|
"description": "A Little React/JSX Runtime Implementation for Browser",
|
|
5
5
|
"repository": "github:arashkazemi/lilact",
|
|
6
6
|
"homepage": "https://arashkazemi.github.io/lilact/",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"type": "module",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"http": "http-server root",
|
|
18
|
-
"doc": "bin/transpile-dir.js --inDir src --outDir .tmp &&
|
|
18
|
+
"doc": "bin/transpile-dir.js --inDir src --outDir .tmp && npx typedoc --out docs --tsconfig tsconfig.json && bin/copy-demo.js",
|
|
19
19
|
"build:debug": "webpack --mode development",
|
|
20
20
|
"build:release": "webpack --mode production",
|
|
21
21
|
"build:debug.min": "webpack --mode development --env minify=true",
|
|
@@ -31,13 +31,16 @@
|
|
|
31
31
|
"http-server": "^14.1.1",
|
|
32
32
|
"npm-run-all": "^4.1.5",
|
|
33
33
|
"typedoc": "^0.28.19",
|
|
34
|
-
"webpack": "^5.97.1",
|
|
35
34
|
"webpack-cli": "^6.0.1",
|
|
36
35
|
"webpack-dev": "^1.1.1"
|
|
37
36
|
},
|
|
38
37
|
"dependencies": {
|
|
39
38
|
"@emotion/css": "^11.13.5",
|
|
39
|
+
"css-loader": "^7.1.4",
|
|
40
40
|
"prop-types": "^15.8.1",
|
|
41
|
-
"redux": "^5.0.1"
|
|
42
|
-
|
|
41
|
+
"redux": "^5.0.1",
|
|
42
|
+
"style-loader": "^4.0.0",
|
|
43
|
+
"webpack": "^5.97.1"
|
|
44
|
+
},
|
|
45
|
+
"exports": {}
|
|
43
46
|
}
|