-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
43
44
45
46
{
"name": "terai",
"version": "0.0.0",
"private": true,
"description": "A modern localization framework for Javascript",
"keywords": [],
"author": "Hugo Corta <corta.hugo@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.22.0",
"scripts": {
"dev": "turbo dev --filter='./packages/**'",
"build": "turbo build --filter='./packages/**'",
"test": "turbo test",
"test:dev": "vitest dev -u",
"test:coverage": "vitest run --coverage",
"clean": "pnpm -r --parallel exec rimraf node_modules dist .turbo && rimraf node_modules .turbo",
"prepare": "husky",
"release": "changeset publish",
"release-dev": "changeset version --snapshot dev && changeset publish --tag dev",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@legendapp/state": "^2.1.15",
"chalk": "^5.6.2",
"next": "^16.0.3",
"outdent": "^0.8.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@types/node": "^20.19.25",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^1.6.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"rimraf": "^5.0.10",
"tsdown": "^0.16.6",
"turbo": "^2.6.1",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
}
}