forked from haydenbleasel/files-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 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
41
42
{
"name": "files-sdk-monorepo",
"version": "0.0.0",
"private": true,
"license": "ISC",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"types": "turbo run types",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"prepare": "husky",
"check": "ultracite check",
"fix": "ultracite fix",
"bump-deps": "npx npm-check-updates --deep -u && bun install"
},
"dependencies": {
"@shikijs/langs": "^4.2.0",
"@shikijs/themes": "^4.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"husky": "^9.1.7",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"turbo": "^2.9.16",
"typescript": "^6",
"ultracite": "7.8.1"
},
"packageManager": "[email protected]",
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}