forked from cowprotocol/cow-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "cow-monorepo",
"private": true,
"type": "module",
"license": "(MIT OR Apache-2.0)",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:coverage:html": "turbo run test:coverage:html",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -rf .turbo && rm -rf node_modules",
"codegen": "turbo run swagger:codegen --filter=@cowprotocol/sdk-order-book",
"typecheck": "turbo run typecheck",
"prepublishOnly": "pnpm run typecheck && pnpm test && pnpm run lint",
"release:dry-run": "release-please release-pr --dry-run",
"release:pr": "release-please release-pr",
"release:github": "release-please github-release"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@typescript-eslint/parser": "^8.32.0",
"@typescript-eslint/utils": "^8.32.0",
"eslint": "^9.18.0",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.5.3",
"release-please": "^16.0.0",
"tsup": "^7.2.0",
"turbo": "latest",
"typescript": "^5.2.2",
"typescript-eslint": "^8.32.1"
},
"packageManager": "pnpm@10.8.0",
"engines": {
"node": ">=22"
}
}