-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 924 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 924 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
{
"name": "triggerdev-extensions",
"version": "0.0.1",
"private": true,
"description": "A collection of extensions for trigger.dev build system",
"workspaces": [
"extensions/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "turbo run format",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"release": "changeset version && bun run build && changeset publish",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^24.2.1",
"turbo": "^2.3.0",
"typescript": "^5.7.2"
},
"packageManager": "bun@1.1.38",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}