-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 959 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 959 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
35
36
37
38
39
40
41
42
43
44
{
"name": "openpolicy",
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@changesets/cli": "^2.30.0",
"@types/bun": "latest",
"all-contributors-cli": "^6.26.1",
"lefthook": "^2.1.2",
"rolldown": "^1.0.0-rc.7",
"rolldown-plugin-dts": "^0.22.3",
"turbo": "^2.8.12"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"build": "turbo run build",
"check-types": "turbo run check-types",
"test": "turbo run test",
"dev": "turbo run dev",
"lint": "biome lint .",
"format": "biome format .",
"format:write": "biome format --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"publish-packages": "turbo run build && changeset publish"
},
"workspaces": [
"apps/*",
"packages/*",
"tooling/*",
"examples/*"
],
"catalog": {
"vite": "^7.3.1"
},
"overrides": {
"vite": "^7.3.1"
},
"packageManager": "bun@1.2.21"
}