-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 KB
/
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": "social-dac-library",
"version": "0.2.3",
"description": "This library exposes a class that wraps the Social DAC, created and hosted by redsolver.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"type": "module",
"files": [
"dist/*"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json && tsc -p tsconfig.build.cjs.json",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "redsolver",
"license": "MIT",
"bugs": {
"url": "https://github.com/redsolver/social-dac-library/issues"
},
"homepage": "https://github.com/redsolver/social-dac-library",
"publishConfig": {
"access": "public"
},
"dependencies": {
"post-me": "^0.4.5",
"skynet-js": "^4.0.3-beta",
"skynet-mysky-utils": "^0.1.2"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint-plugin-jsdoc": "^32.3.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tsify": "^5.0.2",
"typescript": "^4.2.4"
}
}