@michael_home/workflow-engine-vue 1.0.4 → 1.0.5

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 CHANGED
@@ -1,21 +1,20 @@
1
1
  {
2
2
  "name": "@michael_home/workflow-engine-vue",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Vue 3 components for workflow engine canvas",
5
5
  "type": "module",
6
- "main": "./dist/index.js",
7
- "module": "./dist/index.js",
8
- "types": "./dist/index.d.ts",
6
+ "main": "./src/index.ts",
7
+ "module": "./src/index.ts",
8
+ "types": "./src/index.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "import": "./dist/index.js",
12
- "require": "./dist/index.cjs",
13
- "types": "./dist/index.d.ts"
14
- },
15
- "./dist/style.css": "./dist/style.css"
11
+ "import": "./src/index.ts",
12
+ "require": "./src/index.ts",
13
+ "types": "./src/index.ts"
14
+ }
16
15
  },
17
16
  "files": [
18
- "dist"
17
+ "src"
19
18
  ],
20
19
  "keywords": [
21
20
  "workflow",
@@ -40,8 +39,8 @@
40
39
  "vue-tsc": "^3.2.0"
41
40
  },
42
41
  "scripts": {
43
- "build": "vite build && vue-tsc --emitDeclarationOnly --outDir dist",
44
- "check": "echo 'Vue package type checking'",
45
- "clean": "rm -rf dist"
42
+ "build": "echo 'Vue components are published as source code'",
43
+ "check": "vue-tsc --noEmit",
44
+ "clean": "echo 'No build output to clean'"
46
45
  }
47
46
  }