-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.72 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "kahunas-cli",
"version": "1.9.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "Nima Karimi",
"repository": {
"type": "git",
"url": "git+https://github.com/kkarimi/kahunas-cli.git"
},
"bin": {
"kahunas": "dist/cli.js"
},
"files": [
"ai-screenshot.png",
"README.md",
"dist/cli.js",
"src/web"
],
"main": "dist/cli.js",
"scripts": {
"build": "rolldown src/cli.ts --file dist/cli.js --format cjs --platform node --inlineDynamicImports --external playwright --external playwright-core --external vite --external vite-plugin-solid --external fsevents --tsconfig tsconfig.json",
"kahunas": "node dist/cli.js",
"serve": "pnpm kahunas workout serve",
"lint": "pnpm typecheck",
"lint:fmt": "pnpm lint:fix",
"lint:fix": "oxfmt .",
"prepublishOnly": "pnpm build",
"start": "node dist/cli.js",
"release": "pnpm dlx tsx scripts/release.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepare": "lefthook install"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"autoprefixer": "^10.4.19",
"date-fns": "^4.1.0",
"picocolors": "^1.1.1",
"playwright": "^1.49.1",
"postcss": "^8.4.38",
"solid-js": "^1.8.22",
"tailwindcss": "^4.1.18",
"valibot": "^1.2.0",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.10"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^1.6.0",
"lefthook": "^2.0.15",
"oxfmt": "^0.25.0",
"rolldown": "1.0.0-beta.59",
"typescript": "^5.7.3",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.25.0"
}