-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 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
{
"name": "axios-form-handler",
"version": "1.0.0",
"description": "A form handling library inspired by Inertia.js useForm, with Axios integration and Laravel validation support",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"keywords": [
"form",
"axios",
"laravel",
"validation",
"useForm",
"http",
"api",
"request",
"form-handling",
"spa",
"alpinejs"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/isap-ou/axios-form-handler.git"
},
"author": "Andrii Trush <andrii.trush@isapp.be>",
"license": "MIT",
"bugs": {
"url": "https://github.com/isap-ou/axios-form-handler/issues"
},
"homepage": "https://github.com/isap-ou/axios-form-handler#readme",
"peerDependencies": {
"axios": "^1.0.0"
},
"dependencies": {
"axios": "^1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"rollup": "^4.5.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
}
}