-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "ricora-flavored-markdown",
"version": "0.0.0",
"private": true,
"author": "ricora",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ricora/ricora-flavored-markdown.git"
},
"bugs": {
"url": "https://github.com/ricora/ricora-flavored-markdown/issues"
},
"type": "module",
"workspaces": ["packages/*"],
"scripts": {
"lint": "biome lint .",
"lint:write": "biome lint --write .",
"format": "biome format .",
"format:write": "biome format --write .",
"check": "biome check .",
"check:write": "biome check --write .",
"build": "turbo build",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"changeset": "changeset",
"release": "bun run build && CI=true bun run test && bun run changeset publish"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"lefthook": "1.8.2",
"turbo": "2.2.3"
},
"packageManager": "bun@1.1.17"
}