riza-ui 1.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/dist/xui.m.js ADDED
@@ -0,0 +1,2 @@
1
+ import"./xui.m.css";import"riza";
2
+ //# sourceMappingURL=xui.m.js.map
@@ -0,0 +1 @@
1
+ {"mappings":"A,M,a,A,O,M","sources":["<anon>","src/main.js"],"sourcesContent":["import \"./xui.m.css\";\nimport \"riza\";\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=xui.m.js.map\n","\nimport \"../css/xui.css\";\n\nimport \"../css/dialog.css\";\nimport \"../css/btn-strip.css\";\nimport \"../css/btn.css\";\nimport \"../css/form.css\";\n"],"names":[],"version":3,"file":"xui.m.js.map"}
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "riza-ui",
3
+ "version": "1.0.0",
4
+ "description": "riza-ui",
5
+ "type": "module",
6
+ "main": "./dist/riza-ui.m.js",
7
+ "module": "./dist/riza-ui.m.js",
8
+ "global": "./dist/riza-ui.js",
9
+ "scripts": {
10
+ "test": "echo Ok",
11
+ "changes": "rose :changes",
12
+ "build-css": "rose css/compile.fn css/riza-ui.src.css css/riza-ui.css",
13
+ "build:global": "parcel build --target global",
14
+ "build:module": "parcel build --target module",
15
+ "build": "shx rm -rf .parcel-cache && pnpm build-css && pnpm build:module",
16
+ "dev": "parcel serve dev/index.html"
17
+ },
18
+ "targets": {
19
+ "module": {
20
+ "source": "./src/main.js",
21
+ "optimize": true,
22
+ "isLibrary": true
23
+ },
24
+ "global": {
25
+ "source": "./src/main.js",
26
+ "optimize": true,
27
+ "includeNodeModules": true,
28
+ "isLibrary": true
29
+ }
30
+ },
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/rsthn/riza-ui.git"
34
+ },
35
+ "author": "RedStar Technologies",
36
+ "license": "MIT",
37
+ "bugs": {
38
+ "url": "https://github.com/rsthn/riza-ui/issues"
39
+ },
40
+ "homepage": "https://github.com/rsthn/riza-ui#readme",
41
+ "files": [
42
+ "dist/",
43
+ "LICENSE",
44
+ "README.md"
45
+ ],
46
+ "dependencies": {
47
+ "babel-plugin-riza": "^2.0.9",
48
+ "riza": "^3.0.32"
49
+ },
50
+ "devDependencies": {
51
+ "@babel/core": "^7.12.0",
52
+ "parcel": "^2.12.0",
53
+ "shx": "^0.3.4"
54
+ }
55
+ }