-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1022 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1022 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
30
31
32
33
34
35
36
37
{
"name": "nequi-node",
"description": "Nequi SDK Node.js monorepo",
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "biome lint --write --unsafe .",
"format": "biome format --write .",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "^1.3.6",
"conventional-changelog-atom": "^5.0.0",
"semantic-release": "^25.0.2",
"turbo": "^2.8.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24",
"bun": ">=1.3.6"
},
"packageManager": "bun@1.3.6"
}