-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.92 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
77
78
{
"name": "nuxt-workers",
"version": "0.1.0",
"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 <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "simple-git-hooks && pnpm nuxt-module-build build --stub && pnpm nuxt-module-build prepare && nuxt prepare playground",
"docs:dev": "nuxt dev docs",
"docs:build": "nuxt generate docs",
"lint": "eslint .",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"test": "vitest run --coverage",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^4.0.0",
"magic-string": "^1.0.0",
"mlly": "^1.7.4",
"pathe": "^2.0.3",
"ufo": "^1.5.4",
"unplugin": "^3.0.0"
},
"devDependencies": {
"@nuxt/eslint-config": "1.16.0",
"@nuxt/module-builder": "1.0.3",
"@nuxt/test-utils": "4.1.0",
"@vitest/coverage-v8": "4.1.10",
"@vue/test-utils": "2.4.11",
"eslint": "10.8.0",
"happy-dom": "20.11.1",
"knip": "6.32.0",
"nano-staged": "1.0.2",
"nuxt": "4.5.2",
"playwright": "1.62.1",
"rollup": "4.62.4",
"simple-git-hooks": "2.13.1",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"packageManager": "pnpm@11.20.0",
"nano-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}