forked from sveltejs/svelte.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 765 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 765 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
{
"name": "svelte-dev-monorepo",
"version": "0.0.1",
"description": "monorepo for svelte.dev",
"private": true,
"type": "module",
"license": "MIT",
"packageManager": "pnpm@9.2.0",
"engines": {
"pnpm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/svelte.dev.git"
},
"scripts": {
"check": "pnpm -r check",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"test": "pnpm -r test",
"build": "cd ./packages/site-kit && pnpm package && cd ../repl && pnpm package && cd ../../apps/svelte.dev && pnpm build",
"changeset:version": "changeset version && pnpm -r generate:version && git add --all",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.10"
}
}