@map-protocol/map1 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.
- package/README.md +7 -0
- package/index.js +24 -0
- package/package.json +13 -0
package/README.md
ADDED
package/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
throw new Error("map1 v1.0 has not been published yet. See https://github.com/map-protocol/map1");
|
|
2
|
+
```
|
|
3
|
+
|
|
4
|
+
And a file called `README.md` with:
|
|
5
|
+
```
|
|
6
|
+
# map1
|
|
7
|
+
|
|
8
|
+
MAP v1: deterministic identity for structured data.
|
|
9
|
+
|
|
10
|
+
**This is a name reservation. The full package has not been published yet.**
|
|
11
|
+
|
|
12
|
+
See: https://github.com/map-protocol/map1
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Then back in PowerShell:
|
|
16
|
+
```
|
|
17
|
+
npm login
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
It'll open your browser to sign in to npmjs.com. If you don't have an npm account yet, go to https://www.npmjs.com/signup first and create one.
|
|
21
|
+
|
|
22
|
+
After login succeeds:
|
|
23
|
+
```
|
|
24
|
+
npm publish
|
package/package.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@map-protocol/map1",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "MAP v1: deterministic identity for structured data. Full release coming soon.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://github.com/map-protocol/map1",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/map-protocol/map1.git"
|
|
11
|
+
},
|
|
12
|
+
"keywords": ["map1", "canonical", "deterministic", "identity"]
|
|
13
|
+
}
|