forked from freb97/nuxt-strapi-blocks-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "nuxt-strapi-blocks-renderer",
"version": "1.0.3",
"description": "Renderer for the strapi blocks text element.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/freb97/nuxt-strapi-blocks-renderer.git"
},
"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": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:basic",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
"dev:basic": "nuxi dev playground/basic",
"dev:custom": "nuxi dev playground/custom",
"release": "npm run lint && npm run test && npm run prepack && npm publish",
"release:ci": "npm run prepack && npm publish",
"lint:es": "eslint './**/*.{js,ts,vue}' --max-warnings=0",
"lint:types": "tsc",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.10.2",
"defu": "^6.1.4"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@nuxt/devtools": "^1.0.8",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.10.2",
"@nuxt/test-utils": "^3.11.0",
"@stylistic/eslint-plugin": "^1.6.2",
"eslint": "^8.56.0",
"nuxt": "^3.10.2",
"vitest": "^1.3.0",
"vue": "^3.4.19",
"vue-eslint-parser": "^9.4.2"
}
}