-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
{
"name": "sot-nuxt-laravel",
"version": "0.0.12",
"description": "Nuxt Module designed to facilitate backend communication with Laravel Api",
"repository": "sot/sot-nuxt-laravel",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"release:locally": "npm run lint && npm run test && npm run prepack && npm pack && mv ./sot-nuxt-laravel-*.tgz ../Released",
"lint": "eslint ./src",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.5.0",
"@pinia-plugin-persistedstate/nuxt": "^1.1.1",
"@vueuse/integrations": "^10.1.2",
"@vueuse/nuxt": "^10.1.2",
"change-case": "^4.1.2",
"defu": "^6.1.2",
"ofetch": "^1.0.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.3",
"@heroicons/vue": "^2.0.18",
"@nuxt/eslint-config": "^0.1.1",
"@nuxt/module-builder": "^0.3.1",
"@nuxt/schema": "^3.5.1",
"@nuxt/test-utils": "^3.5.1",
"@pinia/nuxt": "^0.4.11",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.16.14",
"autoprefixer": "^10.4.14",
"changelogen": "^0.5.3",
"eslint": "^8.40.0",
"nuxt": "^3.5.1",
"pinia": "^2.1.3",
"postcss": "^8.4.24",
"sot-helpers": "^1.0.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vitest": "^0.31.0",
"vue-tsc": "^1.6.5"
},
"overrides": {
"vue": "latest"
}
}