diff --git a/README.md b/README.md
index e061721..ef5721b 100644
--- a/README.md
+++ b/README.md
@@ -20,25 +20,25 @@ Existing conversations (please notify if this needs an update):
## Install
```shell
-npm install custom-attributes --save
+npm install @lume/custom-attributes --save
```
Add as a script tag:
```html
-
+
```
Or import as an ES module:
```js
-import customAttributes from 'custom-attributes'
+import {customAttributes} from '@lume/custom-attributes'
```
Or you can just import the CustomAttributeRegistry and create your own instance:
```js
-import {CustomAttributeRegistry} from 'custom-attributes'
+import {CustomAttributeRegistry} from '@lume/custom-attributes'
const customAttributes = new CustomAttributeRegistry(document)
```
diff --git a/package.json b/package.json
index 7a75d72..115d5e4 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
},
"repository": {
"type": "git",
- "url": "git+https://github.com/matthewp/custom-attributes.git"
+ "url": "git+https://github.com/lume/custom-attributes.git"
},
"keywords": [
"web",
@@ -33,9 +33,9 @@
"author": "Matthew Phillips",
"license": "BSD-2-Clause",
"bugs": {
- "url": "https://github.com/matthewp/custom-attributes/issues"
+ "url": "https://github.com/lume/custom-attributes/issues"
},
- "homepage": "https://github.com/matthewp/custom-attributes#readme",
+ "homepage": "https://github.com/lume/custom-attributes#readme",
"devDependencies": {
"@lume/cli": "^0.14.0",
"prettier": "3.0.3",