-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 851 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 851 Bytes
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
{
"name": "layerchart-monorepo",
"version": "0.0.1",
"author": "Sean Lynch <techniq35@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "pnpm -r dev",
"test:unit": "pnpm -r test:unit",
"build": "rimraf packages/*/dist && pnpm -r build",
"package": "pnpm -r package",
"check": "pnpm -r check",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "changeset publish",
"up-deps": "pnpm update -r -i --latest"
},
"devDependencies": {
"@changesets/cli": "2.29.6",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"rimraf": "6.0.1",
"wrangler": "^4.30.0"
},
"packageManager": "pnpm@9.1.1",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}