-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (68 loc) · 1.92 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
{
"name": "nuxt-content-assets",
"version": "1.5.0",
"description": "Enable locally-located assets in Nuxt Content",
"repository": "davestewart/nuxt-content-assets",
"license": "MIT",
"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": [
"cache",
"dist"
],
"scripts": {
"dev:setup": "cpy cache playground/node_modules/nuxt-content-assets && cpy \"cache/**\" playground/.nuxt/content-assets",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
"dev": "nuxi dev playground",
"dev:generate": "nuxi generate playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"build": "nuxt-module-build build",
"release:setup": "npm run lint && npm run test && npm run build",
"release:dry": "npm run release:setup && npm publish --dry-run",
"release": "npm run release:setup && npm publish",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"crosspath": "^2.0.0",
"debounce": "^1.2.1",
"image-size": "^1.0.2",
"listhen": "^1.7.2",
"ohash": "^1.0.0",
"unist-util-visit": "^4.1.2",
"unstorage": "^1.4.1",
"ws": "^8.13.0"
},
"peerDependencies": {
"@nuxt/content": "^2.13.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.0",
"@types/debounce": "^1.2.1",
"@types/node": "^20.12.4",
"@types/ws": "^8.5.10",
"changelogen": "^0.5.5",
"cpy-cli": "^5.0.0",
"eslint": "^8.57.0",
"nuxt": "^3.11.2",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=16.0.0"
}
}