-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 798 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 798 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": "@explodingcamera/esm",
"private": true,
"type": "module",
"keywords": [],
"license": "MIT",
"workspaces": [
"packages/*",
"scripts"
],
"scripts": {
"build": "turbo build",
"lint": "biome check packages",
"format": "biome format packages",
"typecheck": "tsc --noEmit",
"publish-packages": "turbo build && changeset version && changeset publish",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"bun-types": "^1.2.4",
"scripts": "workspace:*",
"turbo": "^2.4.4"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
],
"packageManager": "bun@1.2.4"
}