-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2 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
{
"name": "pacifica.js",
"version": "4.0.0",
"description": "TypeScript SDK for Pacifica API and WebSocket integration",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format src",
"format:write": "biome format --write src",
"check": "biome check src",
"check:fix": "biome check --write src",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"keywords": [
"pacifica",
"trading",
"api",
"websocket",
"typescript",
"solana",
"derivatives"
],
"author": "",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.95.8",
"bs58": "^6.0.0",
"eventemitter3": "^5.0.1",
"isomorphic-ws": "^5.0.0",
"tweetnacl": "^1.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@changesets/cli": "^2.29.8",
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kesar/pacifica-ts.git"
},
"bugs": {
"url": "https://github.com/kesar/pacifica-ts/issues"
},
"homepage": "https://github.com/kesar/pacifica-ts#readme",
"publishConfig": {
"access": "public"
}
}