-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.75 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@arkiv-network/sdk",
"version": "0.6.5-dev.10",
"description": "TypeScript client library for Arkiv's blockchains interactions",
"type": "module",
"target": "esnext",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"sideEffects": false,
"exports": {
".": {
"bun": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./accounts": {
"bun": "./src/accounts/index.ts",
"import": "./dist/accounts/index.js",
"require": "./dist/accounts/index.cjs",
"default": "./dist/accounts/index.js"
},
"./chains": {
"bun": "./src/chains/index.ts",
"import": "./dist/chains/index.js",
"require": "./dist/chains/index.cjs",
"default": "./dist/chains/index.js"
},
"./query": {
"bun": "./src/query/index.ts",
"import": "./dist/query/index.js",
"require": "./dist/query/index.cjs",
"default": "./dist/query/index.js"
},
"./types": {
"bun": "./src/types/index.ts",
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs",
"default": "./dist/types/index.js"
},
"./utils": {
"bun": "./src/utils/index.ts",
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.cjs",
"default": "./dist/utils/index.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"chains": [
"./dist/_types/chains/index.d.ts"
],
"accounts": [
"./dist/_types/accounts/index.d.ts"
],
"utils": [
"./dist/_types/utils/index.d.ts"
],
"query": [
"./dist/_types/query/index.d.ts"
]
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdown",
"type-check": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"test:unit": "bun test src/**/*",
"docs": "bunx typedoc --plugin typedoc-plugin-markdown",
"docs:verify": "bunx typedoc --emit none --plugin typedoc-plugin-markdown",
"package": "rimraf arkiv-network-sdk-*.tgz && bun run build && bun pm pack --no-cache",
"package:test": "bun run package && mv arkiv-network-sdk-*.tgz arkiv-network-sdk-latest.tgz",
"prepublishOnly": "bun run build && bun run package && mv arkiv-network-sdk-*.tgz arkiv-network-sdk-latest.tgz",
"version:prerelease": "npm version prerelease --preid=dev -m \"chore(release): %s [skip ci]\"",
"version:release": "npm version --allow-same-version $(node -p \"require('./package.json').version.replace(/-.*$/, '')\") -m \"chore(release): %s [skip ci]\"",
"publish-main": "npm publish ./arkiv-network-sdk-latest.tgz --access public",
"publish-main:dry": "npm publish ./arkiv-network-sdk-latest.tgz --access public --dry-run",
"publish-dev": "npm publish ./arkiv-network-sdk-latest.tgz --access public --tag dev",
"publish-dev:dry": "npm publish ./arkiv-network-sdk-latest.tgz --access public --tag dev --dry-run"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/bun": "latest",
"rimraf": "^6.0.1",
"tsdown": "^0.16.0",
"typedoc": "^0.28.14"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": false
}
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"typescript",
"blockchain",
"golem",
"arkiv",
"golemdb",
"ethereum",
"viem"
],
"repository": {
"type": "git",
"url": "https://github.com/Arkiv-Network/arkiv-sdk-js.git"
},
"homepage": "https://arkiv.network",
"dependencies": {
"brotli-wasm": "^3.0.1",
"typedoc-plugin-markdown": "^4.9.0",
"viem": "^2.38.2"
}
}