@ruledwdl/dom 0.1.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/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@ruledwdl/dom",
3
+ "version": "0.1.0",
4
+ "description": "Native DOM runtime for @ruledwdl/state with surgical element updates driven by state events.",
5
+ "main": "src/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "build": "npx esbuild src/index.js --bundle --minify --outfile=dist/wdl-dom.min.js --format=esm",
9
+ "test": "node test/dom.test.js",
10
+ "prepublishOnly": "npm run build"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "src",
15
+ "examples",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "exports": {
20
+ ".": "./src/index.js",
21
+ "./browser": "./dist/wdl-dom.min.js"
22
+ },
23
+ "keywords": [
24
+ "ruledwdl",
25
+ "dom",
26
+ "state",
27
+ "mutation",
28
+ "runtime",
29
+ "wdl"
30
+ ],
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/ruledweb/ruledwdl.git"
34
+ },
35
+ "author": "Pradeep Dabane <pradeep@ruledweb.com>",
36
+ "license": "AGPL-3.0-or-later",
37
+ "publishConfig": {
38
+ "access": "public"
39
+ }
40
+ }