domma-js 0.22.0 → 0.22.3
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 +91 -91
- package/public/dist/bundles/domma-complete.css +340 -23
- package/public/dist/bundles/domma-data-focused.css +340 -23
- package/public/dist/bundles/domma-essentials.css +340 -23
- package/public/dist/bundles/domma-full.css +340 -23
- package/public/dist/bundles/domma-minimal.css +8 -8
- package/public/dist/domma-syntax.min.js +3 -3
- package/public/dist/domma.css +3 -3
- package/public/dist/domma.esm.js +4 -4
- package/public/dist/domma.min.js +4 -4
- package/public/dist/elements.css +18 -12
- package/public/dist/grid.css +3 -3
- package/public/dist/syntax.css +3 -3
- package/public/dist/themes/domma-themes.css +314 -3
package/package.json
CHANGED
|
@@ -1,93 +1,93 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
2
|
+
"name": "domma-js",
|
|
3
|
+
"version": "0.22.3",
|
|
4
|
+
"description": "Dynamic Object Manipulation & Modeling API - A complete front-end toolkit.",
|
|
5
|
+
"main": "public/dist/domma.min.js",
|
|
6
|
+
"module": "public/dist/domma.esm.js",
|
|
7
|
+
"types": "assets/types/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"domma": "./bin/domma-cli.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/",
|
|
13
|
+
"templates/kickstart/",
|
|
14
|
+
"templates/kickstart-spa/",
|
|
15
|
+
"templates/page-template/",
|
|
16
|
+
"templates/view-template/",
|
|
17
|
+
"public/dist/domma.min.js",
|
|
18
|
+
"public/dist/domma.esm.js",
|
|
19
|
+
"public/dist/domma.css",
|
|
20
|
+
"public/dist/bundles/",
|
|
21
|
+
"public/dist/elements.css",
|
|
22
|
+
"public/dist/grid.css",
|
|
23
|
+
"public/dist/syntax.css",
|
|
24
|
+
"public/dist/domma-syntax.min.js",
|
|
25
|
+
"public/dist/themes/",
|
|
26
|
+
"assets/types/",
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/pinpointzero73/domma.git"
|
|
33
|
+
},
|
|
34
|
+
"type": "module",
|
|
35
|
+
"scripts": {
|
|
36
|
+
"postinstall": "node bin/postinstall.js",
|
|
37
|
+
"start": "node bin/domma-cli.js serve",
|
|
38
|
+
"serve": "node bin/domma-cli.js serve",
|
|
39
|
+
"serve:3096": "node bin/domma-cli.js serve --port 3096",
|
|
40
|
+
"dev": "NODE_ENV=development npm run generate:bundles && rollup -c && node scripts/build-info.js && npm run build:metadata && npm run copy:themes && npm run build:css && npm run build:miniapps && live-server public --port=3001 --open=/index.html",
|
|
41
|
+
"dev:watch": "NODE_ENV=development npm run generate:bundles && rollup -c && node scripts/build-info.js && npm run build:metadata && npm run copy:themes && npm run build:css && npm run build:miniapps && npm run watch:miniapps",
|
|
42
|
+
"build": "npm run generate:bundles && rollup -c && node scripts/build-info.js && npm run build:metadata && npm run copy:themes && npm run build:css && npm run build:css-bundles && npm run build:archives && npm run build:kickstart-files && npm run build:miniapps",
|
|
43
|
+
"build:js": "rollup -c",
|
|
44
|
+
"build:css": "node scripts/build-css.js",
|
|
45
|
+
"build:css-bundles": "node scripts/build-css-bundles.js",
|
|
46
|
+
"build:archives": "node scripts/build-archives.js",
|
|
47
|
+
"build:kickstart-files": "node scripts/build-kickstart-files.js",
|
|
48
|
+
"build:info": "node scripts/build-info.js",
|
|
49
|
+
"build:metadata": "node scripts/copy-metadata.js",
|
|
50
|
+
"copy:themes": "node scripts/copy-theme-css.js",
|
|
51
|
+
"build:miniapps": "node scripts/build-miniapp.js && node scripts/copy-miniapps.js",
|
|
52
|
+
"build:miniapp:garage": "node scripts/build-miniapp.js garage",
|
|
53
|
+
"build:miniapp:address": "node scripts/build-miniapp.js address",
|
|
54
|
+
"watch:miniapps": "node scripts/watch-miniapps.js",
|
|
55
|
+
"generate:bundles": "node scripts/generate-bundles.js",
|
|
56
|
+
"release": "bash scripts/release.sh",
|
|
57
|
+
"release:patch": "npm version patch && npm run release",
|
|
58
|
+
"release:minor": "npm version minor && npm run release",
|
|
59
|
+
"release:major": "npm version major && npm run release",
|
|
60
|
+
"test:vitest": "vitest",
|
|
61
|
+
"test": "vitest",
|
|
62
|
+
"cypress:run": "cypress run"
|
|
63
|
+
},
|
|
64
|
+
"keywords": [
|
|
65
|
+
"dom",
|
|
66
|
+
"http",
|
|
67
|
+
"utils",
|
|
68
|
+
"toolkit",
|
|
69
|
+
"json-config"
|
|
70
|
+
],
|
|
71
|
+
"author": "Darryl Waterhouse",
|
|
72
|
+
"license": "ISC",
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
75
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
76
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
77
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
78
|
+
"cypress": "^15.8.1",
|
|
79
|
+
"dotenv": "^17.2.3",
|
|
80
|
+
"jsdom": "^24.1.0",
|
|
81
|
+
"live-server": "^1.2.0",
|
|
82
|
+
"puppeteer": "^24.34.0",
|
|
83
|
+
"rollup": "^4.28.0",
|
|
84
|
+
"rollup-plugin-obfuscator": "^1.1.0",
|
|
85
|
+
"vitest": "^4.0.16"
|
|
86
|
+
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@fastify/cors": "^11.2.0"
|
|
89
|
+
},
|
|
90
|
+
"optionalDependencies": {
|
|
91
|
+
"live-server": "^1.2.0"
|
|
92
|
+
}
|
|
93
93
|
}
|