-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1003 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@capsulesocial/ipfs-wrapper",
"description": "Blogchain's IPFS wrapper",
"version": "1.1.0",
"main": "dist/index.js",
"author": "Christos Panagiotakopoulos <christos@capsule.social>",
"license": "GPL-3.0-only",
"types": "dist/index.d.ts",
"homepage": "https://github.com/capsulesocial/ipfs-wrapper",
"repository": {
"type": "git",
"url": "git+https://github.com/capsulesocial/ipfs-wrapper.git"
},
"files": [
"dist/"
],
"keywords": [
"ipfs",
"Capsule Social",
"Blogchain"
],
"type": "module",
"scripts": {
"build": "yarn tsc",
"lint": "yarn eslint '*/**/*.ts' -c .eslintrc.cjs --ignore-path .eslintignore",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
},
"dependencies": {
"ipfs-core": "0.16.0"
}
}