@worm-vue3-print/core 1.0.1

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,37 @@
1
+ {
2
+ "name": "@worm-vue3-print/core",
3
+ "version": "1.0.1",
4
+ "type": "module",
5
+ "description": "打印模板表达式引擎与同构渲染管线(HTML 生成/分页/数据绑定),无 Vue、无宿主依赖",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "license": "MIT",
20
+ "keywords": [
21
+ "print",
22
+ "template",
23
+ "expression",
24
+ "pagination",
25
+ "pdf-render-pipeline"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsup",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest"
31
+ },
32
+ "devDependencies": {
33
+ "tsup": "^8.0.0",
34
+ "typescript": "^5.4.0",
35
+ "vitest": "^1.6.0"
36
+ }
37
+ }