-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 788 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "stealth-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @stealth/shared && npm run build --workspace stealth-github && npm run build --workspace @stealth/cli",
"stealth": "node packages/cli/dist/cli.js",
"watch": "npm run watch --workspace stealth-github",
"package": "npm run build && npm run package --workspace=stealth-github",
"test": "bash scripts/test.sh",
"test:unit": "npm run build --workspace @stealth/shared && node --test --test-reporter spec test/unit/*.test.mjs",
"smoke": "bash scripts/smoke-check.sh",
"demo-gif": "node scripts/demo/record.mjs"
},
"devDependencies": {
"gifenc": "^1.0.3",
"playwright": "^1.52.0",
"pngjs": "^7.0.0"
}
}