slapflow 1.0.2
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/LICENSE +15 -0
- package/README.md +175 -0
- package/RUNTIME-FLOW.mmd +18 -0
- package/SPEC-RU.md +448 -0
- package/SPEC.md +448 -0
- package/dist/index.cjs +2560 -0
- package/dist/index.d.cts +379 -0
- package/dist/index.d.ts +379 -0
- package/dist/index.js +2524 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "slapflow",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Chain actions behavior runtime",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "Sergey Khalilov",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"behavior",
|
|
9
|
+
"workflow",
|
|
10
|
+
"action-runner",
|
|
11
|
+
"rules-engine",
|
|
12
|
+
"typescript"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/khalilov/slapflow.git"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/khalilov/slapflow/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/khalilov/slapflow#readme",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"main": "./dist/index.cjs",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"module": "./dist/index.js",
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"SPEC.md",
|
|
39
|
+
"SPEC-RU.md",
|
|
40
|
+
"RUNTIME-FLOW.mmd",
|
|
41
|
+
"!dist/**/*.js.map",
|
|
42
|
+
"!dist/**/*.d.ts.map"
|
|
43
|
+
],
|
|
44
|
+
"directories": {
|
|
45
|
+
"test": "test"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"typecheck": "tsc --noEmit",
|
|
49
|
+
"test": "npm run typecheck && vitest run",
|
|
50
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
51
|
+
"pack:check": "npm pack --dry-run",
|
|
52
|
+
"prepublishOnly": "npm test && npm run build"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^26.1.0",
|
|
56
|
+
"prettier": "^3.0.0",
|
|
57
|
+
"tsup": "^8.5.1",
|
|
58
|
+
"typescript": "^5.9.3",
|
|
59
|
+
"vitest": "^4.1.10"
|
|
60
|
+
},
|
|
61
|
+
"sideEffects": false,
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"objwalk": "^1.1.0"
|
|
64
|
+
}
|
|
65
|
+
}
|