-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 871 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
25
26
27
28
29
30
31
{
"type": "module",
"private": false,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build",
"cli": "tsx packages/cli/src/cli.ts",
"dev": "tsc --build && node packages/cli/bin/flout.js",
"test": "tsc --build && npm test --workspaces",
"test:e2e": "tsc --build && npm run test:e2e --workspace=@flout/cli",
"clean": "tsc --build --clean",
"publish-all": "node scripts/publish-all.mjs",
"publish-docker": "./packages/docker/publish.sh",
"publish-sandbox": "npm run build && npm publish --workspace=@flout/sandbox"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.3.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"name": "flout",
"version": "0.4.2",
"dependencies": {
"@flout/cli": "^0.4.2"
}
}