-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
85 lines (85 loc) · 2.06 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
78
79
80
81
82
83
84
85
{
"name": "@storyblok/vue",
"type": "module",
"version": "8.1.6",
"packageManager": "[email protected]",
"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 cy:components",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:components": "cypress run-ct"
},
"peerDependencies": {
"vue": ">=3.4"
},
"dependencies": {
"@storyblok/js": "3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-typescript": "^12.1.2",
"@storyblok/eslint-config": "^0.3.0",
"@types/node": "^22.10.2",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-vue": "^5.2.1",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.1.10"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm commitlint --last --verbose"
}
}