@improba/page-builder 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "@improba/page-builder",
3
+ "version": "0.1.0",
4
+ "description": "A Vue 3 page builder component library — WYSIWYG editor with read/edit modes, custom component registry, and SSR support.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/types/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/types/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./style.css": "./dist/style.css"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "sideEffects": [
23
+ "**/*.css"
24
+ ],
25
+ "scripts": {
26
+ "dev": "vite serve playground",
27
+ "build": "vite build",
28
+ "build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist/types",
29
+ "docs:api": "typedoc --options typedoc.json",
30
+ "docs:api:clean": "rm -rf docs/api && npm run docs:api",
31
+ "docs:screenshots": "playwright test tests/e2e/capture-screenshots.spec.ts",
32
+ "preview": "vite preview",
33
+ "test": "vitest run",
34
+ "test:e2e": "playwright test",
35
+ "test:e2e:smoke": "playwright test --grep @smoke",
36
+ "test:e2e:headed": "playwright test --headed",
37
+ "bench": "vitest bench",
38
+ "test:watch": "vitest",
39
+ "test:coverage": "vitest run --coverage",
40
+ "lint": "eslint src/ --ext .ts,.vue",
41
+ "lint:fix": "eslint src/ --ext .ts,.vue --fix",
42
+ "format": "prettier --write \"src/**/*.{ts,vue,css,scss}\"",
43
+ "typecheck": "vue-tsc --noEmit",
44
+ "e2e:install": "playwright install chromium",
45
+ "release:verify": "npm run typecheck && npm run test && npm run build",
46
+ "release:prepare": "npm run release:verify && npm run build:types && npm run docs:api",
47
+ "release:dry-run": "npm pack --dry-run",
48
+ "release": "./scripts/release.sh",
49
+ "prepublishOnly": "npm run release:prepare"
50
+ },
51
+ "peerDependencies": {
52
+ "vue": "^3.4.0"
53
+ },
54
+ "devDependencies": {
55
+ "@playwright/test": "^1.58.2",
56
+ "@tsconfig/node22": "^22.0.0",
57
+ "@types/node": "^22.0.0",
58
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
59
+ "@typescript-eslint/parser": "^8.0.0",
60
+ "@vitejs/plugin-vue": "^5.0.0",
61
+ "@vitest/coverage-v8": "^3.0.0",
62
+ "@vue/test-utils": "^2.4.0",
63
+ "eslint": "^9.0.0",
64
+ "eslint-plugin-vue": "^9.0.0",
65
+ "happy-dom": "^15.0.0",
66
+ "prettier": "^3.0.0",
67
+ "sass": "^1.80.0",
68
+ "typedoc": "^0.28.17",
69
+ "typedoc-plugin-markdown": "^4.10.0",
70
+ "typescript": "^5.6.0",
71
+ "vite": "^6.0.0",
72
+ "vitest": "^3.0.0",
73
+ "vue": "^3.5.0",
74
+ "vue-tsc": "^2.0.0"
75
+ },
76
+ "repository": {
77
+ "type": "git",
78
+ "url": "git+https://github.com/improba/page-builder.git"
79
+ },
80
+ "license": "MIT",
81
+ "keywords": [
82
+ "vue",
83
+ "vue3",
84
+ "page-builder",
85
+ "cms",
86
+ "wysiwyg",
87
+ "ssr",
88
+ "component-library"
89
+ ],
90
+ "engines": {
91
+ "node": ">=22.0.0"
92
+ }
93
+ }