-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "@nevermined-io/payments",
"version": "0.8.0",
"description": "Typescript SDK to interact with the Nevermined Payments Protocol",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nevermined-io/payments"
},
"author": "Nevermined <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/nevermined-io/payments",
"files": [
"dist"
],
"keywords": [
"ai-payments",
"ai-payments-protocol"
],
"scripts": {
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
"build": "tsc",
"lint": "eslint ./src",
"test": "jest --verbose --config ./tests/jest-unit.json ",
"test:e2e": "jest --config ./tests/jest-e2e.json",
"format": "prettier --check ./src",
"prepublishOnly": "yarn build",
"doc": "typedoc --out docs ./src"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-nevermined": "^0.2.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"@types/jest": "^29.5.13",
"@types/ws": "^8.0.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "0.25.13",
"typescript": "^5.3.3"
},
"dependencies": {
"socket.io-client": "4.7.5",
"axios": "^1.7.7",
"jose": "^5.2.4",
"js-file-download": "^0.4.12",
"uuid": "^10.0.0"
}
}