@baipeng139/72flow-nodejs 1.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/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@baipeng139/72flow-nodejs",
3
+ "version": "1.0.0",
4
+ "description": "Node.js / browser implementation of the 72flow orchestration engine",
5
+ "type": "module",
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
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "scripts": {
22
+ "dev": "vitest",
23
+ "test": "vitest run",
24
+ "build": "tsup src/index.ts --format esm,cjs --dts --clean",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "keywords": [
28
+ "workflow",
29
+ "orchestration",
30
+ "flow-engine",
31
+ "72flow",
32
+ "bpmn"
33
+ ],
34
+ "author": "baipeng",
35
+ "license": "ISC",
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/baipeng1009472720/72flow-nodejs.git"
39
+ },
40
+ "bugs": {
41
+ "url": "https://github.com/baipeng1009472720/72flow-nodejs/issues"
42
+ },
43
+ "homepage": "https://github.com/baipeng1009472720/72flow-nodejs#readme",
44
+ "devDependencies": {
45
+ "@types/node": "^25.6.0",
46
+ "tsup": "^8.5.1",
47
+ "typescript": "^6.0.2",
48
+ "vitest": "^4.1.4"
49
+ },
50
+ "dependencies": {
51
+ "@types/lodash-es": "^4.17.12",
52
+ "lodash-es": "^4.18.1"
53
+ }
54
+ }
55
+