-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
{
"name": "ordiscan",
"version": "1.1.0",
"description": "TypeScript client for the Ordiscan API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"test": "vitest",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"keywords": [
"ordinals",
"runes",
"bitcoin",
"ordiscan",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/ordiscan/ordiscan-sdk"
},
"bugs": {
"url": "https://github.com/ordiscan/ordiscan-sdk/issues"
},
"homepage": "https://ordiscan.com/docs/api",
"author": "t4t5",
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^18.0.0",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"nock": "^14.0.0-beta.18",
"tsc-alias": "^1.8.10",
"typescript": "^4.9.0",
"vitest": "^2.1.6"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"zod": "^3.24.1"
}
}