-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "@flare-city/flare-city",
"private": true,
"version": "1.0.0",
"author": "Drew DeCarme",
"license": "MIT",
"description": "FlareCity simplifies API development on Cloudflare Workers, offering a purposeful and efficient framework for building, testing, and deploying serverless APIs.",
"workspaces": {
"packages": [
"packages/**",
"examples/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/drewdecarme/flare-city.git"
},
"bugs": {
"url": "https://github.com/drewdecarme/flare-city/issues"
},
"homepage": "https://github.com/drewdecarme/flare-city#readme",
"scripts": {
"build": "yarn turbo build --filter='!with-*'",
"packages:version": "yarn changeset version",
"packages:publish": "yarn build && yarn workspaces foreach --all --no-private npm publish --access public --tolerate-republish",
"packages:tag": "yarn changeset tag"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.26.2"
},
"devDependencies": {
"eslint": "8.52.0",
"prettier": "3.0.3",
"turbo": "^1.10.16",
"typescript": "5.2.2"
}
}