@workglow/javascript 0.2.28
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/dist/task/JavaScriptTask.d.ts +153 -0
- package/dist/task/JavaScriptTask.d.ts.map +1 -0
- package/dist/task/acorn.d.ts +14 -0
- package/dist/task/acorn.d.ts.map +1 -0
- package/dist/task/interpreter.d.ts +17 -0
- package/dist/task/interpreter.d.ts.map +1 -0
- package/dist/task.d.ts +7 -0
- package/dist/task.d.ts.map +1 -0
- package/dist/task.js +4593 -0
- package/dist/task.js.map +12 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@workglow/javascript",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"sideEffects": false,
|
|
5
|
+
"version": "0.2.28",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/workglow-dev/workglow.git",
|
|
9
|
+
"directory": "packages/javascript"
|
|
10
|
+
},
|
|
11
|
+
"description": "Sandboxed JavaScript task with vendored interpreter.",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"watch": "concurrently -c 'auto' 'bun:watch-*'",
|
|
14
|
+
"watch-js": "bun build --watch --no-clear-screen --sourcemap=external --packages=external --outdir ./dist ./src/task.ts",
|
|
15
|
+
"watch-types": "tsc --watch --preserveWatchOutput",
|
|
16
|
+
"build-package": "bun run build-js && bun run build-types",
|
|
17
|
+
"build-js": "bun build --sourcemap=external --packages=external --outdir ./dist ./src/task.ts",
|
|
18
|
+
"build-clean": "rm -fr dist/* tsconfig.tsbuildinfo",
|
|
19
|
+
"build-types": "rm -f tsconfig.tsbuildinfo && tsgo",
|
|
20
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
21
|
+
"test": "bun test"
|
|
22
|
+
},
|
|
23
|
+
"exports": {
|
|
24
|
+
"./task": {
|
|
25
|
+
"types": "./dist/task.d.ts",
|
|
26
|
+
"import": "./dist/task.js"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@workglow/task-graph": "0.2.28",
|
|
31
|
+
"@workglow/util": "0.2.28"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@workglow/task-graph": "0.2.28",
|
|
35
|
+
"@workglow/util": "0.2.28"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"src/**/*.md"
|
|
40
|
+
],
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
}
|
|
44
|
+
}
|