-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "ordapi",
"version": "0.0.8",
"license": "CC0-1.0",
"homepage": "https://raphjaph.github.io/ordapi",
"docs": "https://raphjaph.github.io/ordapi",
"keywords": [
"ordinals",
"bitcoin",
"inscriptions",
"runes",
"typescript"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsc --emitDeclarationOnly && bun build ./src/index.ts --outdir ./dist --target node",
"test": "bun test ./src/test/**/*.test.ts",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint . && tsc -b",
"docs:generate": "bun run docs/generate.ts",
"docs:html": "bun run docs/generateHtml.ts",
"docs:serve": "bun run docs/serveDocs.ts",
"docs": "bun run docs:generate && bun run docs:html && bun run docs:serve"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"dependencies": {
"zod": "^3.24.4"
},
"devDependencies": {
"@types/bun": "^1.2.13",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript-eslint": "^8.32.1"
}
}