-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.89 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.89 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
{
"name": "@strobelabs/perpcity-sdk",
"author": "Strobe Labs",
"description": "TypeScript SDK for interacting with Perp City contracts",
"version": "0.6.1",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/StrobeLabs/perpcity-sdk.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"test:unit": "vitest run",
"test:integration": "vitest run --config vitest.e2e.config.ts --no-file-parallelism --sequence.concurrent=false",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:all": "pnpm run test:unit && pnpm run test:integration",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"ci": "pnpm run build && pnpm run test:unit && pnpm exec tsc --noEmit && pnpm run lint",
"example-create-perp": "tsx -r dotenv/config examples/create-perp.ts",
"example-maker": "tsx -r dotenv/config examples/maker.ts",
"example-taker": "tsx -r dotenv/config examples/taker.ts",
"example-close": "tsx -r dotenv/config examples/close.ts",
"example-view": "tsx -r dotenv/config examples/view.ts",
"example-optimized": "tsx -r dotenv/config examples/optimized-view.ts"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@types/node": "^24.5.2",
"@vitest/ui": "^3.2.4",
"dotenv": "^17.2.2",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@isaacs/ttlcache": "^1.4.1",
"@uniswap/v3-sdk": "^3.25.2",
"viem": "^2.37.8"
}
}