-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
40
41
42
{
"name": "@primer-io/checkout",
"private": true,
"version": "2.x.x",
"type": "module",
"workspaces": [
"examples/*/*"
],
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Primer",
"url": "https://primer.io"
},
"scripts": {
"lint": "concurrently bun:lint:*",
"lint:commit": "commitlint --from origin/main --to HEAD --verbose",
"lint:es": "eslint . --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0",
"lint:prettier": "prettier . --ignore-path .gitignore --check",
"lint:ts": "echo 'Ignored for now...'",
"format": "concurrently bun:format:*",
"format:es": "bun run lint:es --fix",
"format:prettier": "prettier . --ignore-path .gitignore --write",
"test": "vitest",
"coverage": "vitest run --coverage",
"update": "bunx npm-check-updates --root -u -ws && bun i"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.1",
"astro": "^4.2.4",
"commitlint": "^18.4.4",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
}
}