This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
106 lines (106 loc) · 2.86 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "skynet-js",
"version": "4.3.0",
"description": "Sia Skynet Javascript Client",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist/*"
],
"browserslist": [
"defaults",
"not IE 11",
"not OperaMini all"
],
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json && tsc --project tsconfig.build.cjs.json",
"build-deploy": "rimraf bundle && mkdir bundle && browserify ./src/index.ts -s skynet -p [ tsify --noImplicitAny ] > bundle/index.js",
"deploy": "yarn build-deploy && node ./scripts/deploy.js && rimraf bundle",
"lint": "yarn lint:tsc && yarn lint:eslint",
"lint:eslint": "eslint . --max-warnings 0",
"lint:tsc": "tsc",
"prepublishOnly": "yarn && yarn build",
"test": "jest --coverage",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --max-warnings 0",
"prettier --write"
],
"*.{json,yml,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkynetLabs/skynet-js.git"
},
"keywords": [
"sia",
"skynet"
],
"author": "Karol Wypchlo",
"license": "MIT",
"bugs": {
"url": "https://github.com/SkynetLabs/skynet-js/issues"
},
"homepage": "https://github.com/SkynetLabs/skynet-js",
"dependencies": {
"@skynetlabs/tus-js-client": "^3.0.0",
"async-mutex": "^0.4.0",
"axios": "^0.27.2",
"base32-decode": "^1.0.0",
"base32-encode": "^1.1.1",
"base64-js": "^1.3.1",
"blakejs": "^1.1.0",
"buffer": "^6.0.1",
"mime": "^3.0.0",
"path-browserify": "^1.0.1",
"post-me": "^0.4.5",
"randombytes": "^2.1.0",
"sjcl": "^1.0.8",
"skynet-mysky-utils": "^0.3.0",
"tweetnacl": "^1.0.3",
"url-join": "^4.0.1",
"url-parse": "^1.5.1"
},
"devDependencies": {
"@skynetlabs/skynet-nodejs": "^2.8.0",
"@types/base64-js": "^1.3.0",
"@types/jest": "^29.1.1",
"@types/mime": "^3.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.0.0",
"@types/randombytes": "^2.0.0",
"@types/sjcl": "^1.0.29",
"@types/url-join": "^4.0.0",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"axios-mock-adapter": "^1.18.2",
"axios-retry": "^3.2.5",
"eslint": "^8.17.0",
"eslint-plugin-jsdoc": "^39.2.8",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.0.2",
"lint-staged": "^13.0.0",
"minimist": "^1.2.6",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"tar-fs": "^2.1.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.1",
"tsify": "^5.0.4",
"typescript": "^4.7.3"
}
}