-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.26 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
{
"name": "storyblok-js-client",
"type": "module",
"version": "7.3.0",
"description": "Universal JavaScript SDK for Storyblok's API",
"author": "Alexander Feiglstorfer <delooks@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/storyblok/monoblok/tree/main/packages/js-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/storyblok/monoblok.git",
"directory": "packages/js-client"
},
"bugs": {
"url": "https://github.com/storyblok/monoblok/issues"
},
"keywords": [
"storyblok",
"javascript",
"api"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"types": "./dist/index.d.cts",
"source": "src/index.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test:types": "tsc --noEmit --skipLibCheck",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:unit": "vitest run",
"test:unit:ui": "vitest --ui",
"test:e2e": "vitest run -c vitest.config.e2e.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"playground": "pnpm run --filter ./playground/vanilla dev",
"playground:svelte": "pnpm run --filter ./playground/svelte dev",
"playground:next": "pnpm run --filter ./playground/nextjs dev",
"dev:umd": "npx serve ./",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@storyblok/eslint-config": "workspace:*",
"@tsconfig/recommended": "^1.0.8",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/ui": "^3.1.3",
"eslint": "^9.26.0",
"msw": "^2.10.2",
"tsdown": "^0.20.3",
"typescript": "5.8.3",
"vite": "^7.0.6",
"vitest": "^3.1.3"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
},
"nx": {
"implicitDependencies": [
"!@storyblok/playground-*"
]
}
}