-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 971 Bytes
/
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
{
"name": "alpine-query",
"version": "0.0.1",
"description": "",
"scripts": {
"lint": "eslint src",
"prettier": "prettier 'src/**/*.ts' --write",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orthanc/alpine-query.git"
},
"keywords": [
"alpine.js",
"query",
"fetch",
"alpine"
],
"author": "orthanc",
"license": "MIT",
"bugs": {
"url": "https://github.com/orthanc/alpine-query/issues"
},
"homepage": "https://github.com/orthanc/alpine-query#readme",
"devDependencies": {
"@types/alpinejs": "^3.13.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@tanstack/query-core": "^5.24.1",
"wretch": "^2.8.0"
}
}