-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.85 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
{
"name": "nuxt-api-shield",
"version": "0.8.0",
"description": "Nuxt API Shield - Rate Limiting",
"repository": "rrd108/nuxt-api-shield",
"license": "MIT",
"type": "module",
"keywords": [
"nuxt",
"nuxt-module",
"security",
"rate-limit",
"bruteforce"
],
"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 build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release:patch": "yarn lint && yarn test && yarn prepack && changelogen --release --patch && yarn publish && git push --follow-tags",
"release:minor": "yarn lint && yarn test && yarn prepack && changelogen --release --minor && yarn publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run --testTimeout 15000 --reporter=basic --disable-console-intercept",
"test:watch": "vitest watch --testTimeout 15000 --reporter=basic --disable-console-intercept"
},
"dependencies": {
"@nuxt/kit": "^3.12.2",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "^1.4.2",
"@nuxt/eslint-config": "^0.7.0",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.2",
"@types/node": "latest",
"changelogen": "^0.5.5",
"eslint": "^9.10.0",
"nuxt": "^3.13.0",
"typescript": "latest",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.6"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}