-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "@psychedelic/cover",
"version": "0.0.36",
"description": "Cover Software Development Kit",
"main": "./lib/cjs/index",
"module": "./lib/esm/index",
"homepage": "https://covercode.ooo/",
"repository": {
"type": "git",
"url": "https://github.com/Psychedelic/cover-sdk"
},
"scripts": {
"build-cjs": "tsc --outdir lib/cjs -t es2015 -m commonjs",
"build-esm": "tsc --outdir lib/esm -t es2015 -m es2020",
"build": "rm -rf lib && npm run build-cjs && npm run build-esm",
"prettier:check": "prettier --check .",
"prettier": "prettier --write .",
"lint:check": "eslint .",
"lint": "eslint . --fix",
"prepare": "husky install",
"test": "jest"
},
"keywords": [
"internet computer",
"internet-computer",
"ic",
"dfx",
"canister",
"motoko",
"javascript",
"typescript",
"blockchain",
"crypto",
"api",
"sdk"
],
"author": "Fleek Team <[email protected]>",
"license": "GPLv3",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^29.2.2",
"@types/node": "^14.18.33",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.16.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@dfinity/agent": "^0.14.0",
"@dfinity/candid": "^0.14.0",
"@dfinity/identity": "^0.14.0",
"@dfinity/principal": "^0.14.0",
"axios": "^1.1.3",
"buffer": "^6.0.3",
"isomorphic-fetch": "^3.0.0"
}
}