forked from evilmartians/harmonizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.35 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
{
"name": "harmonizer",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"core": "pnpm --filter @harmonizer/core",
"web": "pnpm --filter @harmonizer/web-app",
"figma": "pnpm --filter @harmonizer/figma-plugin",
"lint": "pnpm --parallel -w /^lint:*/",
"lint:eslint": "eslint . --cache --cache-location=./node_modules/.tmp/eslint/.cache",
"lint:prettier": "prettier --check .",
"lint:styles": "pnpm stylelint **/*.{css,module.css}",
"format": "pnpm --parallel -w /^format:*/",
"format:eslint": "pnpm lint:eslint --fix",
"format:prettier": "prettier . --write",
"format:styles": "pnpm lint:styles --fix && prettier --write '**/*.{css,module.css}'",
"typecheck": "pnpm --recursive --parallel typecheck",
"postinstall": "pnpm exec simple-git-hooks"
},
"engines": {
"node": ">=22.x"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@figma/eslint-plugin-figma-plugins": "^0.16.1",
"@hideoo/eslint-config": "^4.0.0",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"nano-staged": "^0.8.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"simple-git-hooks": "^2.13.1",
"stylelint": "^16.24.0",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^39.0.0",
"stylelint-order": "^7.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged",
"pre-push": "pnpm typecheck"
},
"nano-staged": {
"*.{js,cjs,mjs,jsx,ts,mts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.html": [
"prettier --write"
],
"*.{css,module.css}": [
"stylelint --fix",
"prettier --write"
]
},
"pnpm": {
"overrides": {
"brace-expansion@^1": "^1.1.12",
"brace-expansion@^2": "^2.0.2"
},
"patchedDependencies": {
"@hideoo/eslint-config@4.0.0": "patches/@hideoo__eslint-config@4.0.0.patch"
}
},
"dependencies": {
"@zag-js/menu": "^1.24.1",
"@zag-js/react": "^1.24.1",
"@zag-js/select": "^1.24.1"
},
"packageManager": "pnpm@10.17.0+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef"
}