forked from xmtp/xmtp-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 988 Bytes
/
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
{
"name": "xmtp-js",
"version": "0.0.0",
"private": true,
"workspaces": [
"content-types/*",
"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": "FORCE_COLOR=1 turbo run lint",
"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": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"rimraf": "^6.0.1",
"turbo": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}