-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
102 lines (102 loc) · 2.65 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
{
"name": "storyblok-js-client",
"version": "6.10.1",
"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": {
"lint": "eslint --max-warnings=0 './src/**/*.{ts,js}'",
"build": "node vite.build.mjs && tsc",
"demo": "vite serve playground",
"dev:umd": "npx serve ./",
"test": "vitest run",
"test:e2e": "vitest run -c vitest.config.e2e.ts",
"test:ui": "vitest --ui --coverage.enabled=true",
"coverage": "vitest run --coverage",
"prepare": "npm run build"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@storyblok/eslint-config": "^0.3.0",
"@tsconfig/recommended": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"isomorphic-fetch": "^3.0.0",
"kolorist": "^1.8.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}