-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 850 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 850 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
{
"name": "elementor-cli",
"version": "0.4.2",
"type": "module",
"bin": {
"elementor-cli": "./dist/elementor-cli"
},
"scripts": {
"dev": "bun --watch run src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outfile dist/elementor-cli --target bun",
"test": "bun test --ignore 'tests/e2e/**'",
"test:e2e": "bun test tests/e2e",
"test:e2e:setup": "cd tests/e2e && docker compose up -d",
"test:e2e:teardown": "cd tests/e2e && docker compose down -v",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^12.0.0",
"@inquirer/prompts": "^5.0.0",
"zod": "^3.22.0",
"chalk": "^5.3.0",
"ora": "^8.0.0",
"yaml": "^2.4.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.4.0",
"@biomejs/biome": "^1.5.0"
}
}