@libp2p/peer-id 1.0.2 → 1.0.3
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 +44 -42
package/package.json
CHANGED
|
@@ -1,61 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/peer-id",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "IPFS Peer Id implementation in Node.js",
|
|
5
|
+
"license": "Apache-2.0 OR MIT",
|
|
6
|
+
"homepage": "https://github.com/libp2p/js-libp2p-interfaces/tree/master/packages/libp2p-peer-id#readme",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/libp2p/js-libp2p-interfaces.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/libp2p/js-libp2p-interfaces/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"IPFS"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=16.0.0",
|
|
19
|
+
"npm": ">=7.0.0"
|
|
20
|
+
},
|
|
5
21
|
"type": "module",
|
|
6
22
|
"types": "./dist/src/index.d.ts",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"import": "./dist/src/index.js"
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
23
|
"files": [
|
|
13
24
|
"src",
|
|
14
25
|
"dist/src",
|
|
26
|
+
"!dist/test",
|
|
15
27
|
"!**/*.tsbuildinfo"
|
|
16
28
|
],
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"import": "./dist/src/index.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
17
34
|
"eslintConfig": {
|
|
18
35
|
"extends": "ipfs",
|
|
19
36
|
"parserOptions": {
|
|
20
37
|
"sourceType": "module"
|
|
21
38
|
}
|
|
22
39
|
},
|
|
23
|
-
"scripts": {
|
|
24
|
-
"lint": "aegir lint",
|
|
25
|
-
"dep-check": "aegir dep-check dist/src/**/*.js",
|
|
26
|
-
"build": "tsc",
|
|
27
|
-
"pretest": "npm run build",
|
|
28
|
-
"test": "aegir test -f ./dist/test/**/*.js",
|
|
29
|
-
"test:chrome": "npm run test -- -t browser",
|
|
30
|
-
"test:chrome-webworker": "npm run test -- -t webworker",
|
|
31
|
-
"test:firefox": "npm run test -- -t browser -- --browser firefox",
|
|
32
|
-
"test:firefox-webworker": "npm run test -- -t webworker -- --browser firefox",
|
|
33
|
-
"test:node": "npm run test -- -t node --cov",
|
|
34
|
-
"test:electron-main": "npm run test -- -t electron-main"
|
|
35
|
-
},
|
|
36
|
-
"keywords": [
|
|
37
|
-
"IPFS"
|
|
38
|
-
],
|
|
39
|
-
"license": "MIT",
|
|
40
|
-
"engines": {
|
|
41
|
-
"node": ">=15.0.0"
|
|
42
|
-
},
|
|
43
|
-
"repository": {
|
|
44
|
-
"type": "git",
|
|
45
|
-
"url": "git+https://github.com/libp2p/js-libp2p-interfaces.git"
|
|
46
|
-
},
|
|
47
|
-
"bugs": {
|
|
48
|
-
"url": "https://github.com/libp2p/js-libp2p-interfaces/issues"
|
|
49
|
-
},
|
|
50
|
-
"homepage": "https://github.com/libp2p/js-libp2p-interfaces/tree/master/packages/libp2p-peer-id#readme",
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"aegir": "^36.1.3"
|
|
53
|
-
},
|
|
54
|
-
"dependencies": {
|
|
55
|
-
"@libp2p/interfaces": "^1.0.0",
|
|
56
|
-
"multiformats": "^9.4.5",
|
|
57
|
-
"uint8arrays": "^3.0.0"
|
|
58
|
-
},
|
|
59
40
|
"release": {
|
|
60
41
|
"branches": [
|
|
61
42
|
"master"
|
|
@@ -136,5 +117,26 @@
|
|
|
136
117
|
"@semantic-release/github",
|
|
137
118
|
"@semantic-release/git"
|
|
138
119
|
]
|
|
120
|
+
},
|
|
121
|
+
"scripts": {
|
|
122
|
+
"lint": "aegir lint",
|
|
123
|
+
"dep-check": "aegir dep-check dist/src/**/*.js",
|
|
124
|
+
"build": "tsc",
|
|
125
|
+
"pretest": "npm run build",
|
|
126
|
+
"test": "aegir test -f ./dist/test/**/*.js",
|
|
127
|
+
"test:chrome": "npm run test -- -t browser",
|
|
128
|
+
"test:chrome-webworker": "npm run test -- -t webworker",
|
|
129
|
+
"test:firefox": "npm run test -- -t browser -- --browser firefox",
|
|
130
|
+
"test:firefox-webworker": "npm run test -- -t webworker -- --browser firefox",
|
|
131
|
+
"test:node": "npm run test -- -t node --cov",
|
|
132
|
+
"test:electron-main": "npm run test -- -t electron-main"
|
|
133
|
+
},
|
|
134
|
+
"dependencies": {
|
|
135
|
+
"@libp2p/interfaces": "^1.0.0",
|
|
136
|
+
"multiformats": "^9.4.5",
|
|
137
|
+
"uint8arrays": "^3.0.0"
|
|
138
|
+
},
|
|
139
|
+
"devDependencies": {
|
|
140
|
+
"aegir": "^36.1.3"
|
|
139
141
|
}
|
|
140
142
|
}
|