-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 936 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
{
"name": "ucanto",
"private": true,
"type": "module",
"workspaces": [
"packages/interface",
"packages/core",
"packages/client",
"packages/server",
"packages/transport",
"packages/principal",
"packages/validator"
],
"scripts": {
"format": "prettier --write '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"test": "pnpm -r run --if-present test",
"build": "pnpm -r run --if-present build",
"check": "pnpm -r run --if-present check",
"test:node": "pnpm -r run --if-present test:node",
"test:web": "pnpm -r run --if-present test:web"
},
"devDependencies": {
"mocha": "^10.1.0",
"prettier": "2.8.8",
"typescript": "^5.0.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
}
}