-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.88 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@storyblok/astro",
"version": "10.3.0",
"private": false,
"description": "Official Astro integration for the Storyblok Headless CMS",
"keywords": [
"astro",
"astro-sdk",
"storyblok",
"withastro"
],
"homepage": "https://github.com/storyblok/monoblok/tree/main/packages/astro#readme",
"bugs": {
"url": "https://github.com/storyblok/monoblok/issues"
},
"license": "MIT",
"author": "Storyblok",
"repository": {
"type": "git",
"url": "git+https://github.com/storyblok/monoblok.git",
"directory": "packages/astro"
},
"files": [
"*.d.ts",
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./middleware.ts": {
"types": "./dist/live-preview/middleware.d.ts",
"import": "./dist/live-preview/middleware.ts"
},
"./toolbarApp.ts": {
"types": "./dist/dev-toolbar/toolbarApp.d.ts",
"import": "./dist/dev-toolbar/toolbarApp.ts"
},
"./client": "./dist/lib/client.ts",
"./FallbackComponent.astro": "./dist/components/FallbackComponent.astro",
"./StoryblokComponent.astro": "./dist/components/StoryblokComponent.astro",
"./StoryblokServerData.astro": "./dist/components/StoryblokServerData.astro",
"./StoryblokRichText.astro": "./dist/components/StoryblokRichText.astro"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vp build --watch",
"build": "vp build && tsc --project tsconfig.json",
"test:types": "tsc --noEmit --skipLibCheck",
"playground": "pnpm run --filter ./playground/ssg dev",
"playground:ssr": "pnpm run --filter ./playground/ssr dev",
"playground:test": "pnpm run --filter ./playground/test dev",
"qa:dev": "pnpm --filter @storyblok/playground-astro-ssr exec astro dev --port 4321 --background && pnpm --filter @storyblok/playground-astro-ssr exec astro dev logs --follow",
"qa:stop": "pnpm --filter @storyblok/playground-astro-ssr exec astro dev stop",
"qa:editor": "playwright test --config test/visual-editor/playwright.config.ts",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"lint:playground": "pnpm -r --parallel --filter='./playground/*' run lint",
"lint:playground:fix": "pnpm -r --parallel --filter='./playground/*' run lint:fix",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:unit": "vp test run",
"test:e2e": "start-server-and-test playground:test http://localhost:4321/ cy:run",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:watch": "vp test",
"test:ui": "vp test --ui",
"test:e2e:watch": "start-server-and-test playground:test http://localhost:4321/ cy:open",
"test:coverage": "vp test run --coverage"
},
"dependencies": {
"@storyblok/js": "workspace:*",
"@storyblok/richtext": "workspace:*",
"camelcase": "^8.0.0",
"morphdom": "^2.7.8"
},
"devDependencies": {
"@cypress/vite-dev-server": "^6.0.3",
"@playwright/test": "catalog:",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@storyblok/lint-config": "workspace:*",
"@storyblok/visual-editor-qa": "workspace:*",
"@types/lodash.mergewith": "^4.6.9",
"@types/node": "catalog:",
"astro": "^7.0.0",
"cypress": "^14.3.3",
"oxlint": "catalog:",
"start-server-and-test": "^2.0.11",
"typescript": "catalog:",
"vite": "^8.0.0",
"vite-plugin-dts": "catalog:",
"vite-plugin-static-copy": "^4.1.1",
"vitest": "catalog:"
},
"peerDependencies": {
"astro": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"nx": {
"implicitDependencies": [
"!@storyblok/playground-*"
],
"tags": [
"type:lib"
]
}
}