@webreflection/elements 0.0.0 → 0.0.1

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 (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +17 -3
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import QSAO from 'qsa-observer';
2
- import createRegistry from 'nonchalance';
2
+ import createRegistry from 'nonchalance/ce';
3
3
 
4
4
  const query = [];
5
5
  const registry = new Map;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webreflection/elements",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "HTML & SVG Custom Elements",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,7 +17,13 @@
17
17
  "README.md",
18
18
  "LICENSE"
19
19
  ],
20
- "keywords": ["custom elements", "web components", "native", "extends", "is"],
20
+ "keywords": [
21
+ "custom elements",
22
+ "web components",
23
+ "native",
24
+ "extends",
25
+ "is"
26
+ ],
21
27
  "author": "Andrea Giammarchi",
22
28
  "license": "MIT",
23
29
  "type": "module",
@@ -29,5 +35,13 @@
29
35
  "@rollup/plugin-node-resolve": "^16.0.3",
30
36
  "@rollup/plugin-terser": "^0.4.4",
31
37
  "rollup": "^4.57.1"
32
- }
38
+ },
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/WebReflection/elements.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/WebReflection/elements/issues"
45
+ },
46
+ "homepage": "https://github.com/WebReflection/elements#readme"
33
47
  }