-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.45 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
43
44
45
46
{
"name": "root",
"description": "Monorepo for Barqode",
"private": true,
"version": "0.0.0",
"author": "Hunter Johnston <https://github.com/huntabyte>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm build:packages && pnpm build:docs",
"build:packages": "pnpm -F \"./packages/**\" --parallel build",
"build:docs": "pnpm -F \"./docs/**\" build",
"check": "pnpm build:packages && pnpm -r check",
"ci:publish": "pnpm build:packages && changeset publish",
"dev": "pnpm -F \"./packages/**\" svelte-kit sync && pnpm -r --parallel --reporter append-only --color dev",
"test": "pnpm -r test",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"engines": {
"pnpm": ">=9.0.0",
"node": ">=20"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.16.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/scope-manager": "^8.17.0",
"@typescript-eslint/utils": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"svelte": "^5.4.0",
"svelte-eslint-parser": "^0.43.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"wrangler": "^3.91.0"
}
}