-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.03 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nuxt-processor",
"version": "0.0.15",
"description": "Nuxt Processor",
"repository": "https://github.com/aidanhibbard/nuxt-processor",
"license": "MIT",
"type": "module",
"configKey": "processor",
"compatibility": {
"nuxt": "^4.0.0 || ^3.0.0"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"bin": {
"nuxt-processor": "./bin/nuxt-processor.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"vp:dev": "vitepress dev docs",
"vp:build": "vitepress build docs",
"vp:preview": "vitepress preview docs"
},
"dependencies": {
"@nuxt/kit": "^4.3.0",
"bullmq": "^5.67.2",
"citty": "^0.2.0",
"consola": "^3.4.2",
"fast-glob": "^3.3.3",
"ioredis": "^5.9.2",
"pathe": "^2.0.3"
},
"devDependencies": {
"@nuxt/devtools": "^2.6.3",
"@nuxt/eslint": "^1.9.0",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.0.3",
"@nuxt/test-utils": "^3.19.2",
"@types/node": "latest",
"@vitest/coverage-v8": "^3.2.4",
"changelogen": "^0.6.2",
"eslint": "^9.34.0",
"happy-dom": "^20.0.11",
"nuxt": "^4.0.3",
"typescript": "~5.9.2",
"vitepress": "^2.0.0-alpha.12",
"vitest": "^3.2.4",
"vue-tsc": "^3.0.6"
}
}