-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.54 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
{
"name": "@storyblok/richtext",
"type": "module",
"version": "3.0.0",
"packageManager": "[email protected]",
"description": "Storyblok RichText Resolver",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
"license": "MIT",
"homepage": "https://github.com/storyblok/richtext#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/storyblok/richtext.git"
},
"keywords": [
"storyblok",
"richtext",
"resolver"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/storyblok-richtext.es.js",
"require": "./dist/storyblok-richtext.umd.js"
}
},
"main": "./dist/storyblok-richtext.es.js",
"module": "./dist/storyblok-richtext.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:packages": "pnpm -r --filter='./packages/*' run build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:packages": "pnpm -r --parallel --filter='./packages/*' run lint",
"lint:packages:fix": "pnpm -r --parallel --filter='./packages/*' run lint:fix",
"test": "vitest",
"test:ci": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"playground": "cd playground && npm run dev",
"playground:vue": "cd playground/vue && npm run dev",
"playground:react": "cd playground/react && npm run dev",
"playground:all": "pnpm -r --parallel --filter='./playground/*' run dev",
"release": "release-it",
"release:dry": "release-it --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@storyblok/eslint-config": "^0.3.0",
"@storyblok/vue": "^8.1.4",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.29.1",
"kolorist": "^1.8.0",
"lint-staged": "^15.2.10",
"pathe": "^1.1.2",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "4.3.0",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-qrcode": "^0.2.3",
"vitest": "^2.1.3",
"vue": "^3.5.12"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}