-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
50 lines (50 loc) · 1.31 KB
/
package.json
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
47
48
49
50
{
"name": "xmtp-js",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"content-types/*",
"examples/*",
"packages/*",
"sdks/*",
"shared/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rimraf .turbo node_modules && yarn cache clean",
"format": "prettier -w .",
"format:check": "prettier -c .",
"lint": "yarn build && eslint .",
"publish": "yarn build && changeset publish",
"test": "FORCE_COLOR=1 turbo run test",
"test:setup": "./dev/up",
"test:teardown": "./dev/down",
"typecheck": "FORCE_COLOR=1 turbo run typecheck"
},
"dependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.9"
},
"devDependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.16.12",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"rimraf": "^6.0.1",
"turbo": "^2.1.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
},
"packageManager": "yarn@4.5.0",
"engines": {
"node": ">=20"
}
}