This repository was archived by the owner on Jun 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.54 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@storyblok/vue",
"type": "module",
"version": "9.0.0",
"packageManager": "pnpm@10.2.0",
"description": "SDK to integrate Storyblok into your project using Vue.",
"author": "Storyblok",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/storyblok/storyblok-vue"
},
"bugs": {
"url": "https://github.com/storyblok/storyblok-vue/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/storyblok-vue.mjs",
"require": "./dist/storyblok-vue.js"
}
},
"main": "./dist/storyblok-vue.js",
"module": "./dist/storyblok-vue.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"playground": "pnpm run --filter ./playground/vue dev",
"test": "pnpm run test:unit:ci && pnpm run test:e2e",
"test:unit": "vitest",
"test:unit:ci": "vitest run",
"test:unit:ui": "vitest --ui",
"test:e2e": "pnpm run cy:components",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:components": "cypress run-ct",
"prepublishOnly": "pnpm build",
"check-licenses": "node scripts/license-checker.mjs"
},
"peerDependencies": {
"vue": ">=3.4"
},
"dependencies": {
"@storyblok/js": "4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@rollup/plugin-typescript": "^12.1.2",
"@storyblok/eslint-config": "^0.3.0",
"@types/node": "^22.13.1",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-vue": "^5.2.1",
"cypress": "^13.17.0",
"eslint": "^9.19.0",
"eslint-plugin-vue": "^9.32.0",
"kolorist": "^1.8.0",
"license-checker": "^25.0.1",
"pathe": "^2.0.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.5",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"cypress"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
200
]
}
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm commitlint --last --verbose"
}
}