forked from imgly/background-removal-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.3 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
{
"version": "1.4.5",
"name": "workspace",
"workspaces": [
"packages/web",
"packages/web-data",
"packages/node"
],
"bin": {
"changelog-create": "./scripts/changelog/changelog-create.mjs",
"changelog-generate": "./scripts/changelog/changelog-generate.mjs"
},
"files": [],
"scripts": {
"start": "npm run watch",
"watch": "concurrently \"npm run watch --prefix packages/web\" \"npm run watch --prefix packages/node\"",
"build": "npm run build --workspaces --if-present",
"lint": "npx prettier --write --ignore-unknown .",
"publish:latest": "npm run publish:latest --workspaces --if-present && npm run deploy-assets",
"publish:next": "npm run publish:next --workspaces --if-present && npm run deploy-assets",
"package:version": "node ./scripts/package-version.mjs",
"deploy-assets": "node -r dotenv/config ./scripts/deploy-assets.mjs",
"tag": "git tag $npm_package_version & git push origin $npm_package_version",
"package:pack": "npm run package:pack --workspaces --if-present"
},
"devDependencies": {
"dotenv": "~16.3.1",
"glob": "~10.3.3",
"moment": "~2.29.4",
"onchange": "~7.1.0",
"yaml": "~2.3.4",
"chalk": "~5.3.0",
"concurrently": "~8.2.2",
"ejs": "~3.1.9",
"es-main": "~1.3.0",
"meow": "~13.0.0"
}
}