-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "nuxt-workers",
"version": "0.0.3",
"license": "MIT",
"description": "Easily run code in web workers in Nuxt.",
"repository": {
"type": "git",
"url": "git+https://github.com/danielroe/nuxt-workers.git"
},
"keywords": [
"nuxt",
"module",
"nuxt-module",
"web-workers",
"performance"
],
"author": {
"name": "Daniel Roe <[email protected]>",
"url": "https://github.com/danielroe"
},
"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": {
"build": "pnpm dev:prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "simple-git-hooks && pnpm nuxt-module-build build --stub && pnpm nuxt-module-build prepare && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi generate docs",
"lint": "eslint .",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && pnpm publish",
"test": "vitest run --coverage",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"magic-string": "^0.30.12",
"mlly": "^1.7.2",
"pathe": "^1.1.2",
"ufo": "^1.5.4",
"unplugin": "^1.15.0"
},
"devDependencies": {
"@nuxt/eslint-config": "0.6.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.159",
"@nuxt/test-utils": "3.14.4",
"@vitest/coverage-v8": "2.1.5",
"@vue/test-utils": "2.4.6",
"bumpp": "9.8.1",
"eslint": "9.14.0",
"happy-dom": "15.11.4",
"lint-staged": "15.2.10",
"nuxt": "3.14.159",
"playwright": "1.48.2",
"rollup": "4.26.0",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"vite": "5.4.11",
"vitest": "2.1.5",
"vitest-environment-nuxt": "1.0.1",
"vue": "3.5.12"
},
"resolutions": {
"@nuxt/kit": "3.14.159",
"@nuxt/schema": "3.14.159",
"nuxt-workers": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"packageManager": "[email protected]"
}