-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "talkio-monorepo",
"version": "1.0.0-alpha.1",
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"examples/*",
"tooling/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"test:watch": "turbo test:watch",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"lint:fix": "oxlint --fix --fix-suggestions",
"typecheck": "turbo typecheck",
"prepublishOnly": "turbo prepublishOnly",
"clean": "turbo clean && rm -rf node_modules .turbo",
"changeset": "changeset",
"changeset:status": "changeset status --verbose",
"version": "changeset version",
"release": "turbo build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"eslint-plugin-perfectionist": "^5.4.0",
"oxfmt": "^0.26.0",
"oxlint": "^1.41.0",
"turbo": "^2.5.4",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.5"
}