-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
33 lines (33 loc) · 865 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
{
"name": "rsc-parser",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/alvarlagerlof/rsc-parser",
"author": "Alvar Lagerlöf <14835120+alvarlagerlof@users.noreply.github.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "turbo run format",
"ci": "turbo run ci",
"dev": "turbo run dev",
"version": "changeset version && bash ./apply-version.sh",
"release": "changeset publish",
"knip": "knip"
},
"packageManager": "yarn@4.5.1",
"devDependencies": {
"@changesets/cli": "2.27.9",
"knip": "5.36.5",
"prettier": "3.3.3",
"turbo": "2.2.3"
}
}