-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "@protonemedia/inertiajs-tables-laravel-query-builder",
"version": "2.2.0",
"description": "Inertia.js Front-end Components for Spatie's Laravel Query Builder",
"private": false,
"author": "Pascal Baljet <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/inertiajs-tables-laravel-query-builder.umd.js",
"module": "./dist/inertiajs-tables-laravel-query-builder.es.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/inertiajs-tables-laravel-query-builder.es.js",
"require": "./dist/inertiajs-tables-laravel-query-builder.umd.js"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"eslint": "./node_modules/.bin/eslint app/resources/js/ js/ --ext .js,.vue --fix"
},
"peerDependencies": {
"@inertiajs/vue3": "^1.0.0 || ^2.0.0",
"vue": "^3.2.37"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"lodash-es": "^4.17.21",
"qs": "^6.10.5"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@vitejs/plugin-vue": "^5.2.0",
"eslint": "^9.15.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"vite": "^5.4.11"
}
}