-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"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:stress": "turbo test:stress --",
"test:watch": "turbo test:watch",
"format": "oxfmt --write .",
"format:files": "oxfmt --write",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"lint:files": "oxlint --fix --fix-suggestions",
"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",
"postinstall": "lefthook install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"eslint-plugin-perfectionist": "^5.9.0",
"lefthook": "^2.1.6",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"turbo": "^2.9.6",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.5"
}