-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
46
47
48
49
50
{
"name": "lesetid-monorepo",
"description": "Monorepo for the lesetid packages",
"type": "module",
"version": "0.0.0",
"private": true,
"author": {
"name": "Lucas Nørgård",
"email": "lucasnrgaard@gmail.com",
"url": "https://luxass.dev"
},
"packageManager": "pnpm@10.33.0",
"license": "MIT",
"homepage": "https://github.com/luxass/lesetid",
"repository": {
"type": "git",
"url": "git+https://github.com/luxass/lesetid.git"
},
"bugs": {
"url": "https://github.com/luxass/lesetid/issues"
},
"workspaces": [
"www",
"packages/*",
"examples/*",
"tooling/*"
],
"scripts": {
"build:all": "turbo run build",
"build": "turbo run build --filter=\"./packages/*\"",
"build:examples": "turbo run build --filter=\"@lesetid-example/*\"",
"dev:all": "turbo run dev",
"dev": "turbo run dev --filter=\"./packages/*\"",
"dev:examples": "turbo run dev --filter=\"@lesetid-example/*\"",
"lint": "turbo run lint",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && git clean -xdf node_modules"
},
"devDependencies": {
"@changesets/changelog-github": "catalog:monorepo",
"@changesets/cli": "catalog:monorepo",
"@types/node": "catalog:lesetid",
"@vitest/coverage-v8": "catalog:testing",
"turbo": "catalog:monorepo",
"typescript": "catalog:monorepo",
"vitest": "catalog:testing"
}
}