-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 KB
/
package.json
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
{
"name": "placeholder-monorepo",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "An SDK for building web apps on top of Numo markets",
"packageManager": "[email protected]",
"scripts": {
"build": "bun run --cwd packages/numo-ts build && bun run build --exclude numo-ts",
"lint": "bun run lint --parallel",
"format": "bun run format --parallel",
"typecheck": "bun run typecheck --parallel",
"test:ci": "bun run test:ci --parallel",
"size": "bun run size --parallel"
},
"keywords": ["automated market maker", "ethereum", "options"],
"author": "Robert Leifke <@robertleifke>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.2.2",
"@changesets/cli": "^2.26.2",
"@wagmi/cli": "^1.5.2",
"husky": "^8.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"reverse-mirage": "^1.1.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}