-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2 KB
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
{
"name": "cess-js-sdk-nodejs",
"author": "CESS <hello@cess.cloud>",
"homepage": "https://www.cess.cloud",
"license": "MIT",
"version": "0.2.6",
"description": "A js-sdk for Cess Project with file storage",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CESSProject/cess-js-sdk-nodejs.git"
},
"scripts": {
"fmt": "prettier --write .",
"build": "esbuild ./src/index.js --bundle --minify --outfile=./dist/index.js --platform=node",
"build2": "esbuild ./src/index.mjs --bundle --minify --outfile=./dist/index.mjs --platform=node",
"test:types": "ts-node src/tests/types.ts",
"examples": "ts-node src/examples/index.ts",
"validate": "npm run fmt && npm run lint && npm run test:types"
},
"dependencies": {
"@polkadot/api": "^10.12.4",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^13.4.3",
"axios": "^1.4.0",
"bs58": "^5.0.0",
"form-data": "^4.0.2",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"moment": "^2.29.4",
"sha256": "^0.2.0",
"short-uuid": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.18.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"blockchain",
"cess",
"chain",
"file-storage",
"filecoin",
"ipfs",
"polkadot",
"polkadot-api",
"polkadot-js",
"protobufjs",
"substrate"
],
"lint-staged": {
"**/*.{js,cjs,mjs,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
}
}