-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "vite-plugin-qrcode-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"dev": "pnpm --dir packages/vite-plugin-qrcode dev",
"build": "pnpm --dir packages/vite-plugin-qrcode build",
"test": "pnpm -r test --workspace-concurrency=1",
"lint": "eslint --cache --ignore-path .gitignore '**/*.{js,ts,svelte,html,svx,md}'",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --cache --ignore-path .gitignore '**/*.{css,scss,svelte,html,js,ts,svx,md}' --check",
"format:fix": "pnpm run format --write",
"fixup": "run-s lint:fix format:fix",
"release": "pnpm run build && pnpm changeset publish",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-svelte": "^2.35.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"rimraf": "^5.0.5",
"svelte": "^4.2.8",
"tsm": "^2.3.0",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,ts,svelte,html,md,svx}": "eslint --fix",
"*.{css,scss,svelte,html,js,ts,svx,md}": [
"prettier --write"
]
},
"packageManager": "pnpm@8.6.7",
"engines": {
"node": "^14.18.0 || ^16.0.0 || >=18"
},
"pnpm": {
"overrides": {
"semver@<7.5.2": ">=7.5.2"
}
}
}