-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 773 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 773 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
33
34
{
"name": "minoro-monorepo",
"module": "index.ts",
"type": "module",
"private": true,
"license": "MIT",
"homepage": "https://minoro.netlify.app",
"repository": {
"type": "git",
"url": "git+https://github.com/nicolassutter/minoro.git"
},
"scripts": {
"dev": "bun run --elide-lines 0 --filter 'minoro-ui' --filter 'example' dev"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/bun": "latest",
"eslint": "^9.33.0",
"eslint-plugin-solid": "^0.14.5",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"typescript-eslint": "^8.39.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@sinclair/typebox": "^0.34.38",
"prettier": "^3.6.2"
}
}