This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "@cssninja/nuxt-media-viewer",
"version": "0.0.15",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build && npm run client:build",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"dev": "concurrently \"npm:client:dev\" \"npm:play:dev\"",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare client",
"play:prod": "pnpm build && nuxi dev playground",
"play:dev": "nuxi dev playground",
"lint": "eslint .",
"release": "run-s prepack release:*",
"release:standard-version": "standard-version",
"release:publish": "git push --follow-tags origin main && npm publish"
},
"dependencies": {
"@nuxt/devtools-ui-kit": "^0.2.5",
"@vueuse/core": "^9.2.0",
"@vueuse/nuxt": "^9.2.0",
"consola": "^2.15.3",
"date-fns": "^2.29.3",
"etag": "^1.8.1",
"image-size": "^1.0.2",
"ipx": "1.0.0-2",
"pathe": "^1.1.0",
"picocolors": "^1.0.0",
"qs": "^6.11.1",
"ufo": "^1.1.1"
},
"devDependencies": {
"@nuxt/devtools": "0.2.5",
"@nuxt/image-edge": "1.0.0-27968280.9739e4d",
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/node": "^18.15.0",
"concurrently": "^7.6.0",
"eslint": "latest",
"npm-run-all": "^4.1.5",
"nuxt": "^3.2.3",
"sirv": "^2.0.2",
"splitpanes": "^3.1.5",
"standard-version": "^9.5.0",
"typescript": "^4.9.5"
}
}