-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "alpine-plugins",
"private": true,
"type": "module",
"author": {
"name": "Eric Kwoka",
"email": "[email protected]",
"url": "https://thekwoka.net/"
},
"license": "MIT",
"scripts": {
"build": "pnpm run -r build",
"doctor": "run-s lint test:run build size",
"lint": "run-s lint:*",
"lint:eslint": "eslint --fix ./**/src/*",
"lint:prettier": "prettier --write ./**/src/*",
"lint:staged": "lint-staged",
"precommit": "run-s lint:staged build size",
"prepare": "husky install",
"size": "node scripts/getSize.js",
"postinstall": "patch-package",
"test": "vitest",
"test:run": "vitest --run"
},
"devDependencies": {
"@milahu/patch-package": "6.4.14",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/alpinejs": "3.13.6",
"@types/node": "20.11.21",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@vitest/ui": "1.3.1",
"alpinejs": "3.13.5",
"esbuild": "0.20.1",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"pretty-bytes": "6.1.1",
"testing-library-alpine": "0.0.1-alpha.0",
"typescript": "5.3.3",
"vite": "5.1.4",
"vite-plugin-dts": "3.7.3",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.3.1",
"vitest-dom": "0.1.1",
"vitest-environment-alpine": "0.0.2-alpha.1"
},
"lint-staged": {
"*.{js,ts,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,html,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"bracketSameLine": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"pnpm": {
"overrides": {
"typescript@<5.1.6": "5.1.6",
"semver@<7.5.2": ">=7.5.2"
}
},
"dependencies": {
"@vue/reactivity": "^3.4.20",
"alpinets": "link:../alpinets/packages/alpinets"
}
}