-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "lesetid-monorepo",
"description": "Monorepo for the lesetid packages",
"type": "module",
"version": "0.0.0",
"private": true,
"author": {
"name": "Lucas Nørgård",
"email": "[email protected]",
"url": "https://luxass.dev"
},
"packageManager": "[email protected]",
"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/*"
],
"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 && manypkg check",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && git clean -xdf node_modules"
},
"devDependencies": {
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@luxass/eslint-config": "catalog:",
"@manypkg/cli": "catalog:",
"@types/node": "catalog:",
"eslint": "catalog:",
"tsup": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}