forked from Psychedelic/sonic-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (42 loc) · 1.4 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
{
"name": "@psychedelic/sonic-js",
"version": "0.4.0",
"description": "Sonic-js is a library that holds an API for interacting with Swap Canister",
"main": "dist/index.js",
"repository": "https://github.com/Psychedelic/sonic-js.git",
"author": "Psychedelic Team",
"license": "GPL-3.0",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"js-sha256": "^0.9.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-patch": "^2.0.1",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1"
},
"scripts": {
"prepare": "ts-patch install -s",
"build": "tsc --project tsconfig.build.json",
"test": "jest --watch",
"test:ci": "jest --silent",
"test:coverage": "jest --coverage",
"docs": "npx typedoc --readme none --disableSources --sort static-first --sort alphabetical --plugin typedoc-plugin-markdown --hideBreadcrumbs --out docs src/index.ts"
},
"dependencies": {
"@dfinity/agent": "^0.12.0",
"@dfinity/candid": "^0.12.0",
"@dfinity/principal": "^0.12.0",
"bignumber.js": "^9.0.2",
"cross-fetch": "^3.1.5"
}
}