-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 835 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 835 Bytes
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
{
"name": "@orderbook-visualizer/utils",
"version": "0.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"private": true,
"files": ["dist/**"],
"scripts": {
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
"dev": "tsup src/index.tsx --format esm,cjs --watch --dts --external react",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@orderbook-visualizer/tsconfig": "workspace:*",
"@types/react": "18.3.13",
"@types/react-dom": "18.3.7",
"react": "18.3.1",
"tsup": "8.1.2",
"typescript": "5.5.4",
"@biomejs/biome": "1.8.3"
},
"publishConfig": {
"access": "public"
}
}