-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "@maestro-org/typescript-sdk",
"version": "1.6.3",
"description": "TypeScript SDK for the Maestro Dapp Platform",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "yarn prettier 'src/**/*.ts' --write && yarn eslint 'src/**/*.ts' --fix",
"test": "pnpm test",
"clean": "rm -rf dist && rm -rf node_modules && rm -f package-lock.json",
"prepare": "husky install"
},
"keywords": [
"typescript",
"blockchain",
"cryptocurrency",
"maestro",
"cardano"
],
"author": "gomaestro.org",
"license": "Apache-2.0",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"commitlint": "^17.4.3",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.6.1"
},
"lint-staged": {
"src/**/*.{js,ts,},": [
"yarn prettier --write",
"yarn eslint --fix"
]
}
}