@fest-lib/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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +57 -0
  3. package/dist/dom.js +1703 -0
  4. package/package.json +68 -0
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@fest-lib/dom",
3
+ "description": "DOM utilities for browsers (fest-lib)",
4
+ "version": "0.1.0",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "sideEffects": true,
8
+ "engines": {
9
+ "node": ">=20"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/fest-live/dom.ts.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/fest-live/dom.ts/issues"
20
+ },
21
+ "homepage": "https://github.com/fest-live/dom.ts#readme",
22
+ "keywords": [
23
+ "fest",
24
+ "fest-lib",
25
+ "dom",
26
+ "browser",
27
+ "typescript"
28
+ ],
29
+ "files": [
30
+ "dist",
31
+ "LICENSE"
32
+ ],
33
+ "main": "./dist/dom.js",
34
+ "module": "./dist/dom.js",
35
+ "exports": {
36
+ ".": {
37
+ "import": "./dist/dom.js",
38
+ "default": "./dist/dom.js"
39
+ },
40
+ "./package.json": "./package.json"
41
+ },
42
+ "peerDependencies": {
43
+ "@fest-lib/core": "^0.1.0"
44
+ },
45
+ "scripts": {
46
+ "test": "vite --host 0.0.0.0",
47
+ "dev": "vite --host 0.0.0.0",
48
+ "watch": "vite build --watch",
49
+ "publish": "npm publish --tag beta --access public",
50
+ "build": "vite build --config vite.config.js && npm run docs && npm run docs:md",
51
+ "build:publish": "FEST_NPM_IMPORTS=1 vite build --config vite.config.js",
52
+ "prepack": "npm run build:publish",
53
+ "preview": "vite preview",
54
+ "docs": "typedoc ./src/index.ts --options ./typedoc.json --out ./docs --tsconfig ./tsconfig.json --excludeExternals --excludePrivate --excludeProtected --skipErrorChecking",
55
+ "docs:clean": "rm -rf ./docs && typedoc --options ./typedoc.json",
56
+ "docs:md": "typedoc --options ./typedoc.md.json",
57
+ "docs:md:clean": "rm -rf ./docs-md && typedoc --options ./typedoc.md.json"
58
+ },
59
+ "devDependencies": {
60
+ "@types/node": ">=24.7.2",
61
+ "typedoc": "^0.28.20",
62
+ "typedoc-plugin-markdown": "^4.12.0",
63
+ "typescript": ">=6.0.0-beta",
64
+ "vite": "^8.0.7",
65
+ "vite-plugin-dynamic-import": ">=1.6.0",
66
+ "vite-plugin-external": ">=6.2.2"
67
+ }
68
+ }