vue-paged-media 0.0.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/README.md +23 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +47 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# vue-paged-media
|
|
2
|
+
|
|
3
|
+
A Vue library for previewing paged media layouts before printing.
|
|
4
|
+
|
|
5
|
+
## Development
|
|
6
|
+
|
|
7
|
+
- Install dependencies:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
vp install
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
- Run the unit tests:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
vp test
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
- Build the library:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
vp pack
|
|
23
|
+
```
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vue-paged-media",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "A Vue library for previewing paged media layouts before printing.",
|
|
5
|
+
"homepage": "https://github.com/pkc918/vue-paged-media",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/pkc918/vue-paged-media/issues"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "青椒肉丝 <xiaopan2000918@gmail.com>",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+ssh://git@github.com/pkc918/vue-paged-media.git"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"type": "module",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": "./dist/index.mjs",
|
|
21
|
+
"./package.json": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "vp pack",
|
|
28
|
+
"dev": "vp pack --watch",
|
|
29
|
+
"test": "vp test",
|
|
30
|
+
"check": "vp check",
|
|
31
|
+
"prepublishOnly": "vp run build",
|
|
32
|
+
"prepare": "vp config"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/node": "^25.6.2",
|
|
36
|
+
"@typescript/native-preview": "7.0.0-dev.20260509.2",
|
|
37
|
+
"bumpp": "^11.1.0",
|
|
38
|
+
"typescript": "^6.0.3",
|
|
39
|
+
"vite-plus": "^0.1.20",
|
|
40
|
+
"vue": "^3.5.38"
|
|
41
|
+
},
|
|
42
|
+
"overrides": {
|
|
43
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
|
|
44
|
+
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
|
|
45
|
+
},
|
|
46
|
+
"packageManager": "npm@11.16.0"
|
|
47
|
+
}
|