-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
103 lines (103 loc) · 3.02 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
{
"name": "ardrive-core-js",
"version": "2.0.3",
"description": "ArDrive Core contains the essential back end application features to support the ArDrive CLI and Desktop apps, such as file management, Permaweb upload/download, wallet management and other common functions.",
"main": "./lib/exports.js",
"types": "./lib/exports.d.ts",
"engines": {
"node": ">=18"
},
"dependencies": {
"@alexsasharegan/simple-cache": "^3.3.3",
"@ardrive/ardrive-promise-cache": "^1.1.4",
"@ardrive/turbo-sdk": "^1.0.1",
"arbundles": "^0.6.22",
"arweave": "^1.14.4",
"axios": "^1.5.1",
"axios-retry": "^3.8.0",
"base64-js": "^1.5.1",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"futoin-hkdf": "^1.5.3",
"human-crypto-keys": "git+https://github.com/ardriveapp/js-human-crypto-keys.git#expose_lib",
"jwk-to-pem": "^2.0.5",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"regression": "^2.0.1",
"smartweave": "^0.4.49",
"utf8": "^3.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/bn.js": "^5.1.2",
"@types/chai": "^4.3.6",
"@types/human-crypto-keys": "^0.1.2",
"@types/jwk-to-pem": "^2.0.1",
"@types/lodash": "^4.14.199",
"@types/mime-types": "^2.1.2",
"@types/mocha": "^10.0.2",
"@types/node": "^18.18.3",
"@types/node-fetch": "^2.6.6",
"@types/power-assert": "^1.5.9",
"@types/regression": "^2.0.3",
"@types/sinon": "^10.0.18",
"@types/source-map-support": "^0.5.8",
"@types/utf8": "^3.0.1",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"chai": "^4.3.10",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"espower-typescript": "^10.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"power-assert": "^1.6.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"sinon": "^16.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"ts-sinon": "^2.0.2",
"typescript": "^5.2.2"
},
"scripts": {
"clean": "rimraf [ lib .nyc_output coverage ]",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"lintfix": "eslint . --ext .ts --fix",
"test": "nyc mocha",
"coverage": "nyc --reporter text --reporter html mocha",
"power-assert": "mocha --parallel false --r espower-typescript/guess ./**/*test.ts",
"typecheck": "tsc --noemit",
"build": "yarn clean && tsc --project ./tsconfig.prod.json",
"ci": "yarn arlocal-docker-test && yarn build",
"dev": "yarn clean && tsc --project ./tsconfig.prod.json -w",
"arlocal-docker-test": "bash \"tests/arlocal-docker-test.sh\""
},
"directories": {
"test": "./"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Permanent Data Solutions Inc",
"email": "[email protected]",
"website": "https://ardrive.io"
},
"repository": {
"type": "git",
"url": "https://github.com/ardriveapp/ardrive-core-js.git"
},
"files": [
"lib/**/*"
]
}