-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 931 Bytes
/
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
{
"name": "draftail.org",
"private": true,
"version": "0.1.0",
"description": "The draftail.org website",
"author": "Thibaud Colas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thibaudcolas/draftail.org.git"
},
"bugs": {
"url": "https://github.com/thibaudcolas/draftail.org/issues"
},
"homepage": "https://www.draftail.org/",
"browserslist": [
"> 1%",
"not IE 11",
"Firefox ESR",
"not OperaMini all"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"prettier": "^3.4.2"
},
"scripts": {
"lint": "biome check && prettier --check '**/?(.)*.{md,yaml,yml,html}'",
"format": "biome format --write && prettier --write '**/?(.)*.{md,yaml,yml,html}'",
"postinstall": "npm --prefix website install",
"prepare": "./.githooks/deploy.sh"
}
}