-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "@stricahq/cardanoscan-js",
"version": "1.0.0",
"description": "Cardanoscan API Service Javascript SDK",
"main": "dist/index.js",
"keywords": [
"cardanoscan",
"strica",
"cardano"
],
"repository": {
"type": "git",
"url": "https://github.com/StricaHQ/cardanoscan-js.git"
},
"bugs": {
"url": "https://github.com/StricaHQ/cardanoscan-js/issues"
},
"homepage": "https://github.com/StricaHQ/cardanoscan-js#readme",
"scripts": {
"build": "rm -rf dist && tsc && webpack",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"docs": "rm -rf docs && typedoc"
},
"author": "Strica",
"license": "Apache-2.0",
"dependencies": {
"@stricahq/cardano-codec": "^1.0.1",
"axios": "^1.6.8"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.0.0",
"prettier": "^3.2.5",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.3.0",
"ts-mocha": "^10.0.0",
"typedoc": "^0.25.9",
"typescript": "^5.3.3",
"webpack": "^5.72.1",
"webpack-cli": "^5.1.4"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"package.json"
],
"packageManager": "[email protected]"
}