This repository was archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
46
47
48
49
50
51
52
53
54
55
{
"name": "brail",
"version": "0.0.0",
"private": true,
"description": "The email development toolkit for the 21st century",
"repository": {
"url": "https://github.com/sinclairnick/brail"
},
"author": {
"url": "https://github.com/sinclairnick",
"name": "Nick Sinclair"
},
"homepage": "https://brail.dev",
"keywords": [
"email",
"development",
"trpc",
"zod",
"react",
"templating",
"typescript"
],
"license": "Apache",
"readme": "README.md",
"workspaces": [
"apps/*",
"packages/*",
"starters/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel --filter \"!./starters/**\"",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check": "turbo run check --parallel",
"check:watch": "npm run check --watch",
"publish": "turbo run publish --filter \"./packages/*\" && pnpm publish -r --filter \"./packages/*\"",
"clean": "rimraf \"**/node_modules\" \"**/dist\" \"**/.next\" --glob"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"prettier": "latest",
"rimraf": "^4.3.1",
"tsx": "^3.12.3",
"turbo": "latest",
"zx": "^7.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.26.0",
"dependencies": {
"tsup": "^6.6.3"
}
}