-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 801 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 801 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
{
"name": "@languine/core",
"version": "1.0.0",
"private": true,
"workspaces": ["packages/*", "apps/*", "examples/*"],
"license": "MIT",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"format": "biome format --write .",
"lint": "turbo lint && manypkg check",
"typecheck": "turbo typecheck"
},
"packageManager": "bun@1.1.42",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@types/bun": "^1.2.2",
"turbo": "2.4.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"expo-localization": "~16.0.1",
"i18n-js": "^4.5.1"
}
}