-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "sveltebase-workspace",
"version": "0.5.0",
"private": true,
"type": "module",
"packageManager": "bun@1.1.26",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "bun run ./scripts/run-workspace-script.mjs build",
"check": "bun run build && bun run ./scripts/run-workspace-script.mjs check",
"lint": "bun run build && bun run ./scripts/run-workspace-script.mjs lint",
"clean": "bun run ./scripts/run-workspace-script.mjs clean",
"dev:web": "bun run --filter @sveltebase/web dev",
"build:web": "bun run --filter @sveltebase/web build",
"check:web": "bun run --filter @sveltebase/web check",
"release:version": "bun run ./scripts/version.mjs",
"release:publish": "bun run build && bun run ./scripts/publish.mjs"
},
"devDependencies": {
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"publint": "^0.3.18",
"svelte": "^5.55.3",
"svelte-check": "^4.4.6",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vite": "^8.0.8"
},
"description": "A Bun workspace for Svelte packages.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ahrorbeksoft/sveltebase.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahrorbeksoft/sveltebase/issues"
},
"homepage": "https://github.com/ahrorbeksoft/sveltebase#readme"
}