-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "taskyon-integrations",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "yarn@4.16.0",
"workspaces": [
"packages/*"
],
"resolutions": {
"@taskyon/p2p-core": "file:./.cache/taskyon-packages/taskyon-p2p-core.tgz",
"@taskyon/runtime-browser": "file:./.cache/taskyon-packages/taskyon-runtime-browser.tgz",
"@taskyon/taskyon": "file:./.cache/taskyon-packages/taskyon-taskyon.tgz"
},
"scripts": {
"taskyon:pack": "node scripts/pack-taskyon.mjs",
"bootstrap": "yarn taskyon:pack && yarn install",
"build": "yarn workspace @taskyon/home-assistant build",
"test": "yarn workspace @taskyon/home-assistant test",
"test:e2e": "yarn workspace @taskyon/home-assistant test:e2e",
"release:check-npm": "node scripts/check-npm-dependencies.mjs"
}
}