-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.46 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
{
"name": "vue-strapi-blocks-renderer",
"private": false,
"version": "0.2.2",
"description": "A Vue renderer for the Strapi's Blocks rich text editor. Compatible with Nuxt.",
"repository": {
"type": "git",
"url": "git+https://github.com/niklasfjeldberg/vue-strapi-blocks-renderer.git"
},
"homepage": "https://github.com/niklasfjeldberg/vue-strapi-blocks-renderer#readme",
"bugs": {
"url": "https://github.com/niklasfjeldberg/vue-strapi-blocks-renderer/issues"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-strapi-blocks-renderer.cjs",
"module": "./dist/vue-strapi-blocks-renderer.mjs",
"types": "./dist/vue-strapi-blocks-renderer.d.ts",
"exports": {
".": {
"import": "./dist/vue-strapi-blocks-renderer.mjs",
"require": "./dist/vue-strapi-blocks-renderer.cjs",
"types": "./dist/vue-strapi-blocks-renderer.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"clean": "rimraf coverage node_modules dist",
"preview": "vite preview",
"lint": "pnpm lint:js && pnpm lint:prettier",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint:fix": "prettier --write --list-different . && pnpm lint:js --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:types": "vue-tsc --noEmit",
"release:pre": "pnpm build && pnpm lint && pnpm test:types && pnpm test",
"release": "pnpm release:pre && changelogen --release && npm publish && git push --follow-tags",
"releaseBeta": "pnpm release:pre && changelogen --release && npm publish --tag beta && git push --follow-tags"
},
"peerDependencies": {
"vue": ">=3.4.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.1",
"@types/node": "^20.12.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.5",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"happy-dom": "^14.3.10",
"prettier": "^3.2.5",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.4.0",
"vue": "^3.4.21",
"vue-tsc": "^2.0.7"
},
"keywords": [
"strapi",
"blocks",
"strapi blocks",
"renderer",
"nuxt",
"vue"
]
}