-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "@routerprotocol/xplore-core",
"version": "1.3.0",
"description": "TypeScript SDK for router aggregation",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "oxlint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"release": "semantic-release",
"prepublishOnly": "bun run build",
"docs:dev": "vocs dev",
"docs:build": "vocs build",
"docs:preview": "vocs preview"
},
"keywords": [
"sdk",
"typescript",
"router",
"aggregator"
],
"author": "",
"license": "ISC",
"packageManager": "bun@1.1.0",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.5",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^24.3.1",
"oxlint": "^1.14.0",
"semantic-release": "^24.2.7",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"vocs": "^1.0.13"
},
"dependencies": {
"viem": "^2.37.6"
}
}