-
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) · 829 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 829 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": "appwrite-adapters",
"module": "index.ts",
"type": "module",
"scripts": {
"lint": "biome check --write .",
"build": "bun --filter '*' build",
"types": "bun run tsc -b",
"package": "bun run types && bun run build"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0-beta.5",
"@tsconfig/strictest": "^2.0.5",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"tsup": "^8.5.0"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22",
"npm": ">=10.5"
},
"packageManager": "bun@1.2.13",
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}