-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "letrun",
"version": "0.0.1",
"description": "A simple and efficient tool for running declarative workflows with ease.",
"author": "sontx",
"type": "module",
"bin": {
"letrun": "dist/letrun.mjs"
},
"scripts": {
"test": "npm run test -ws --if-present",
"coverage": "npm run coverage -ws --if-present",
"build": "npm run build:all && npm run copy",
"build:all": "npm run build:common &&npm run build:core && npm run build:deps && npm run build:plugin && npm run build:task && npm run build:engine && npm run build:cli && npm run build:viewer && npm run build:task-viewer",
"build:common": "npm run build -w @letrun/common",
"build:core": "npm run build -w @letrun/core",
"build:deps": "npm run build -w @letrun/deps",
"build:plugin": "npm run build -w @letrun/plugin",
"build:task": "npm run build -w @letrun/task",
"build:engine": "npm run build -w @letrun/engine",
"build:cli": "npm run build -w @letrun/cli",
"build:viewer": "npm run build -w @letrun/viewer",
"build:task-viewer": "npm run build -w @letrun/task-viewer",
"clean": "rm -rf ./dist/**",
"copy": "npm run copy:cli && npm run copy:task && npm run copy:bin && npm run copy:viewer && npm run copy:task-viewer",
"copy:cli": "copyfiles -f ./packages/cli/dist/**/*.mjs ./dist",
"copy:bin": "copyfiles -f ./bin/* ./dist",
"copy:task": "copyfiles -f ./packages/task/dist/**/*.js ./dist/tasks",
"copy:viewer": "copyfiles -f ./packages/viewer/dist/** ./dist",
"copy:task-viewer": "rm -rf ./dist/public/** && mkdirp ./dist/public && cp -r ./task-viewer/dist/** ./dist/public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sontx/letrun.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sontx/letrun/issues"
},
"homepage": "https://github.com/sontx/letrun#readme",
"workspaces": [
"packages/*",
"task-viewer"
],
"engines": {
"node": ">=20",
"npm": ">=10"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"esbuild": "^0.23.1",
"esbuild-node-externals": "^1.14.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
}
}