-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "harmonizer",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"core": "pnpm --filter @harmonizer/core",
"web": "pnpm --filter @harmonizer/web-app",
"figma": "pnpm --filter @harmonizer/figma-plugin",
"test": "pnpm --recursive test",
"test:watch": "pnpm --recursive test:watch",
"lint": "cross-env FORCE_COLOR=1 pnpm --parallel -w /^lint:*/",
"lint:oxlint": "oxlint .",
"lint:oxfmt": "oxfmt . --check --ignore-path=.oxfmtignore",
"lint:styles": "pnpm stylelint **/*.{css,module.css}",
"format": "cross-env FORCE_COLOR=1 pnpm --parallel -w /^format:*/",
"format:oxlint": "oxlint . --fix",
"format:oxfmt": "oxfmt . --ignore-path=.oxfmtignore",
"format:styles": "pnpm lint:styles --fix && oxfmt '**/*.{css,module.css}' --ignore-path=.oxfmtignore",
"typecheck": "pnpm --recursive --parallel typecheck",
"security:audit": "pnpm dlx audit-ci@^7",
"postinstall": "pnpm exec simple-git-hooks"
},
"dependencies": {
"@zag-js/menu": "^1.38.2",
"@zag-js/react": "^1.38.2",
"@zag-js/select": "^1.38.2"
},
"devDependencies": {
"cross-env": "^10.1.0",
"nano-staged": "^0.9.0",
"oxfmt": "^0.31.0",
"oxlint": "^1.57.0",
"simple-git-hooks": "^2.13.1",
"stylelint": "^17.6.0",
"stylelint-config-clean-order": "^8.0.1",
"stylelint-config-css-modules": "^4.6.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typescript": "^6.0.2",
"vite": "^8.0.3"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged",
"pre-push": "pnpm typecheck"
},
"nano-staged": {
"*.{js,cjs,mjs,jsx,ts,mts,tsx}": [
"oxlint --fix",
"oxfmt"
],
"*.{css,module.css}": [
"stylelint --fix",
"oxfmt"
]
},
"engines": {
"node": ">=22.x"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"overrides": {
"brace-expansion@^1": "^1.1.13",
"brace-expansion@^2": "^2.0.3",
"minimatch@^3": "^3.1.5",
"minimatch@^5": "^5.1.9",
"ajv@^8": "^8.18.0",
"picomatch@^2": "^2.3.2"
},
"supportedArchitectures": {
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"arm64",
"x64"
],
"libc": [
"glibc"
]
}
}
}