-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 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
{
"name": "biome-config",
"version": "0.0.6",
"description": "A simple configuration library for Biome.js",
"keywords": ["biome.js", "configuration", "config", "lint", "format"],
"homepage": "https://github.com/ErwannRousseau/biome-config",
"license": "MIT",
"bugs": {
"url": "https://github.com/ErwannRousseau/biome-config/issues"
},
"author": "Erwann Rousseau (a.k.a R2) <[email protected]> (https://erwannrousseau.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/ErwannRousseau/biome-config.git"
},
"files": ["dist"],
"type": "module",
"bin": {
"biome-config": "./dist/cli.js"
},
"scripts": {
"build": "tsup && cp ./biome.json dist/",
"ci": "pnpm build && biome ci --reporter=github && pnpm check-exports",
"check": "biome check && tsc",
"check:fix": "biome check --fix",
"check-exports": "attw --pack . --ignore-rules no-resolution",
"local-release": "changeset version && pnpm check:fix && changeset publish",
"prepublishOnly": "pnpm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.8.1",
"chalk": "^5.3.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}