-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
{
"name": "nuxt-parallel-limit",
"version": "0.0.3",
"license": "MIT",
"description": "Run multiple fetch with limited concurrency",
"packageManager": "pnpm@8.6.3",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"parallel-limit",
"ratelimit"
],
"author": {
"name": "Alex Liu <dsa1314@gmail.com>",
"url": "https://github.com/Mini-ghost"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build",
"dev": "nuxi dev playground",
"dev:prepare": "pnpm nuxt-module-build --stub && nuxi prepare playground",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs .",
"lint:all:prettier": "pnpm lint:prettier \"{src,test}/**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --log-level warn",
"prepack": "pnpm build",
"prepare": "husky install",
"release": "bumpp && npm publish"
},
"dependencies": {
"@nuxt/kit": "^3.6.5",
"p-limit": "^4.0.0",
"pathe": "^1.1.1"
},
"devDependencies": {
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.6.5",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"bumpp": "^9.1.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"nuxt": "^3.6.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"resolutions": {
"nuxt-parallel-limit": "link:."
}
}