-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.67 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
{
"name": "@storyblok/richtext",
"type": "module",
"version": "3.0.2",
"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.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@storyblok/eslint-config": "^0.3.0",
"@storyblok/vue": "^8.1.10",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.32.0",
"kolorist": "^1.8.0",
"lint-staged": "^15.4.3",
"pathe": "^2.0.2",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "4.5.0",
"vite-plugin-inspect": "^10.1.0",
"vite-plugin-qrcode": "^0.2.4",
"vitest": "^3.0.5",
"vue": "^3.5.13"
},
"pnpm": {
"onlyBuiltDependencies": ["cypress"]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [2, "always", 200]
}
}
}