-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
82 lines (82 loc) · 2.19 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
{
"name": "@storyblok/js",
"type": "module",
"version": "3.2.0",
"private": false,
"packageManager": "[email protected]",
"description": "SDK to integrate Storyblok into your project using JavaScript.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/storyblok/storyblok-js"
},
"bugs": {
"url": "https://github.com/storyblok/storyblok-js/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/storyblok-js.mjs",
"require": "./dist/storyblok-js.js"
}
},
"main": "./dist/storyblok-js.js",
"module": "./dist/storyblok-js.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"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": "start-server-and-test cy:playground http://localhost:5173/ cy:run",
"test:e2e-watch": "start-server-and-test cy:playground http://localhost:5173/ cy:open",
"cy:playground": "pnpm --filter='./playground/vanilla' dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"dependencies": {
"@storyblok/richtext": "3.0.2",
"storyblok-js-client": "6.10.6"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@storyblok/eslint-config": "^0.3.0",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.10.2",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint-plugin-cypress": "^4.1.0",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"simple-git-hooks": "^2.11.1",
"start-server-and-test": "^2.0.9",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-qrcode": "^0.2.3",
"vitest": "^2.1.8"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm commitlint --last --verbose"
}
}