forked from simsustech/unocss-preset-quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 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
58
59
60
61
62
63
64
65
{
"name": "unocss-preset-quasar-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "run-s build:preset",
"build:preset": "cd packages/preset && pnpm run build",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish",
"lint:preset": "cd packages/preset && pnpm run lint",
"lint:dev": "cd packages/preset && pnpm run lint",
"lint:docs": "cd packages/docs && pnpm run lint",
"lint": "run-s lint:preset lint:dev",
"lint:preset:fix": "cd packages/preset && pnpm run lint:fix",
"lint:dev:fix": "cd packages/preset && pnpm run lint:fix",
"lint:docs:fix": "cd packages/docs && pnpm run lint:fix",
"lint:fix": "run-s lint:preset:fix lint:dev:fix lint:docs:fix",
"test:preset": "cd packages/preset && pnpm run test",
"test": "run-s test:preset"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@unocss/preset-wind3": "66.5.4",
"changesets": "^1.0.2",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"git-conventional-commits": "^2.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"typescript-eslint": "^8.46.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint && pnpm run format:check",
"commit-msg": "pnpm exec commitlint --edit $1"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"eslint --ext .ts"
],
"packages/**/*.d.ts": [
"eslint --ext .ts"
]
}
}