-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
114 lines (114 loc) · 3.03 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
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
{
"name": "storyblok-js-client",
"version": "6.10.6",
"packageManager": "[email protected]",
"description": "Universal JavaScript SDK for Storyblok's API",
"author": "Alexander Feiglstorfer <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/storyblok/storyblok-js-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/storyblok/storyblok-js-client.git"
},
"bugs": {
"url": "https://github.com/storyblok/storyblok-js-client/issues"
},
"keywords": [
"storyblok",
"javascript",
"api"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/entry.esm.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
},
"./richTextResolver": {
"types": "./dist/types/richTextResolver.d.ts",
"import": "./dist/richTextResolver.mjs",
"require": "./dist/richTextResolver.umd.js"
},
"./schema": {
"types": "./dist/types/schema.d.ts",
"import": "./dist/schema.mjs",
"require": "./dist/schema.umd.js"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"types": "./dist/types/entry.esm.d.ts",
"source": "src/index.ts",
"files": [
"dist",
"src",
"tests"
],
"scripts": {
"dev": "vite build --watch",
"build": "node vite.build.mjs",
"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": "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",
"prepare": "pnpm simple-git-hooks",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@storyblok/eslint-config": "^0.3.0",
"@tsconfig/recommended": "^1.0.8",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"kolorist": "^1.8.0",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [2, "always", 200]
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm commitlint --last --verbose"
}
}