@tasker-systems/tasker 0.1.3 → 0.1.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/README.md +47 -86
- package/dist/events/index.d.ts +2 -2
- package/dist/events/index.js +374 -295
- package/dist/events/index.js.map +1 -1
- package/dist/ffi/index.d.ts +323 -242
- package/dist/ffi/index.js +66 -1896
- package/dist/ffi/index.js.map +1 -1
- package/dist/{index-CTl8lGpU.d.ts → index-Bvdub2HH.d.ts} +77 -36
- package/dist/index.d.ts +75 -141
- package/dist/index.js +622 -2491
- package/dist/index.js.map +1 -1
- package/package.json +14 -7
- package/{native/libtasker_ts-darwin-arm64.dylib → tasker_ts.darwin-arm64.node} +0 -0
- package/{native/libtasker_ts-linux-x64.so → tasker_ts.linux-x64-gnu.node} +0 -0
- package/dist/koffi-3HFAASOB.node +0 -0
- package/dist/koffi-AHHUCM3C.node +0 -0
- package/dist/koffi-AVDVVSXH.node +0 -0
- package/dist/koffi-BMO5K7B3.node +0 -0
- package/dist/koffi-G4D35B2D.node +0 -0
- package/dist/koffi-GG4SDSYA.node +0 -0
- package/dist/koffi-GOENU54R.node +0 -0
- package/dist/koffi-IDX6JEDH.node +0 -0
- package/dist/koffi-KFZAXWPQ.node +0 -0
- package/dist/koffi-LOH6WKRQ.node +0 -0
- package/dist/koffi-LUY2JHJP.node +0 -0
- package/dist/koffi-OMHWL3D6.node +0 -0
- package/dist/koffi-QKY2KSXW.node +0 -0
- package/dist/koffi-ROB3FRHA.node +0 -0
- package/dist/koffi-SE4ZI36U.node +0 -0
- package/dist/koffi-X3YT67KE.node +0 -0
- package/dist/koffi-X7JMBSZH.node +0 -0
- package/dist/koffi-YNQDUF3Q.node +0 -0
- package/dist/runtime-interface-D940vUzy.d.ts +0 -694
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tasker-systems/tasker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "TypeScript worker for tasker-core workflow orchestration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
25
|
-
"
|
|
25
|
+
"*.node",
|
|
26
26
|
"README.md"
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"test:watch": "bun test --watch",
|
|
37
37
|
"test:coverage": "bun test --coverage",
|
|
38
38
|
"typecheck": "tsc --noEmit",
|
|
39
|
-
"
|
|
39
|
+
"build:napi": "napi build --platform",
|
|
40
|
+
"build:napi:release": "napi build --platform --release"
|
|
40
41
|
},
|
|
41
42
|
"keywords": [
|
|
42
43
|
"tasker",
|
|
@@ -47,7 +48,7 @@
|
|
|
47
48
|
"typescript",
|
|
48
49
|
"nodejs",
|
|
49
50
|
"bun",
|
|
50
|
-
"
|
|
51
|
+
"napi-rs"
|
|
51
52
|
],
|
|
52
53
|
"author": "Tasker Systems",
|
|
53
54
|
"license": "MIT",
|
|
@@ -60,6 +61,14 @@
|
|
|
60
61
|
"url": "git+https://github.com/tasker-systems/tasker-core.git",
|
|
61
62
|
"directory": "workers/typescript"
|
|
62
63
|
},
|
|
64
|
+
"napi": {
|
|
65
|
+
"binaryName": "tasker_ts",
|
|
66
|
+
"targets": [
|
|
67
|
+
"x86_64-unknown-linux-gnu",
|
|
68
|
+
"aarch64-apple-darwin",
|
|
69
|
+
"x86_64-apple-darwin"
|
|
70
|
+
]
|
|
71
|
+
},
|
|
63
72
|
"engines": {
|
|
64
73
|
"node": ">=18.0.0"
|
|
65
74
|
},
|
|
@@ -69,14 +78,12 @@
|
|
|
69
78
|
},
|
|
70
79
|
"devDependencies": {
|
|
71
80
|
"@biomejs/biome": "^2.3.10",
|
|
81
|
+
"@napi-rs/cli": "^3.5.1",
|
|
72
82
|
"@types/bun": "^1.3.5",
|
|
73
83
|
"@types/node": "^22.19.3",
|
|
74
84
|
"pino-pretty": "^13.1.3",
|
|
75
85
|
"tsup": "^8.5.1",
|
|
76
86
|
"tsx": "^4.21.0",
|
|
77
87
|
"typescript": "^5.9.3"
|
|
78
|
-
},
|
|
79
|
-
"optionalDependencies": {
|
|
80
|
-
"koffi": "^2.9.0"
|
|
81
88
|
}
|
|
82
89
|
}
|
|
Binary file
|
|
Binary file
|
package/dist/koffi-3HFAASOB.node
DELETED
|
Binary file
|
package/dist/koffi-AHHUCM3C.node
DELETED
|
Binary file
|
package/dist/koffi-AVDVVSXH.node
DELETED
|
Binary file
|
package/dist/koffi-BMO5K7B3.node
DELETED
|
Binary file
|
package/dist/koffi-G4D35B2D.node
DELETED
|
Binary file
|
package/dist/koffi-GG4SDSYA.node
DELETED
|
Binary file
|
package/dist/koffi-GOENU54R.node
DELETED
|
Binary file
|
package/dist/koffi-IDX6JEDH.node
DELETED
|
Binary file
|
package/dist/koffi-KFZAXWPQ.node
DELETED
|
Binary file
|
package/dist/koffi-LOH6WKRQ.node
DELETED
|
Binary file
|
package/dist/koffi-LUY2JHJP.node
DELETED
|
Binary file
|
package/dist/koffi-OMHWL3D6.node
DELETED
|
Binary file
|
package/dist/koffi-QKY2KSXW.node
DELETED
|
Binary file
|
package/dist/koffi-ROB3FRHA.node
DELETED
|
Binary file
|
package/dist/koffi-SE4ZI36U.node
DELETED
|
Binary file
|
package/dist/koffi-X3YT67KE.node
DELETED
|
Binary file
|
package/dist/koffi-X7JMBSZH.node
DELETED
|
Binary file
|
package/dist/koffi-YNQDUF3Q.node
DELETED
|
Binary file
|