-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "@formkit/inertia",
"version": "0.1.6",
"description": "FormKit + Inertia = ❤️",
"keywords": [
"formkit",
"vue",
"inertia",
"events",
"laravel",
"form",
"composable"
],
"homepage": "https://github.com/formkit/inertia#readme",
"bugs": "https://github.com/formkit/inertia/issues",
"license": "MIT",
"author": "Gustavo Fenilli <gustavofenilli@gmail.com>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"repository": "github:formkit/inertia",
"scripts": {
"test": "vitest",
"build": "tsup-node",
"lint": "publint && eslint",
"prerelease": "pnpm run build && pnpm run lint",
"release": "bumpp && pnpm publish"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"bumpp": "^9.2.0",
"eslint": "^8.52.0",
"publint": "^0.2.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"peerDependencies": {
"@formkit/vue": ">= 1.2.0",
"@inertiajs/vue3": ">= 1.0.0",
"vue": ">= 3.0.0"
}
}