-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.13 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.13 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "better-bookmarks-page-extension",
"version": "3.1.0",
"private": true,
"scripts": {
"audit": "pnpm audit --audit-level moderate",
"build": "pnpm --filter @better-bookmarks/app build",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0",
"changelog:all": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"check": "biome check",
"check:fix": "biome check --write",
"clean": "pnpm --filter @better-bookmarks/app clean",
"commitlint": "commitlint --edit",
"format": "biome format",
"format:fix": "biome format --write",
"lint": "biome lint",
"lint-staged": "lint-staged",
"lint:fix": "biome lint --write",
"prepare": "husky",
"preview": "pnpm --filter @better-bookmarks/app preview",
"release": "./scripts/create-release.sh",
"semantic-release": "semantic-release",
"start": "pnpm --filter @better-bookmarks/app start",
"test": "pnpm --filter @better-bookmarks/app test",
"test:coverage": "pnpm --filter @better-bookmarks/app test:coverage",
"test:e2e": "pnpm --filter @better-bookmarks/tests-e2e test",
"test:e2e:chrome": "pnpm --filter @better-bookmarks/tests-e2e test:chrome",
"test:e2e:firefox": "pnpm --filter @better-bookmarks/tests-e2e test:firefox",
"test:e2e:open": "pnpm --filter @better-bookmarks/tests-e2e test:open"
},
"devDependencies": {
"@better-bookmarks/shared-tooling": "workspace:*",
"@biomejs/biome": "^2.3.5",
"@codecov/vite-plugin": "^1.9.1",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2 ",
"@semantic-release/npm": "^13.1.2",
"conventional-changelog-cli": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"semantic-release": "^25.0.1"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"cypress"
]
}
}