-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "@tailwind-typography/workspace",
"version": "1.0.0",
"description": "Workspace for Tailwind Typography packages and apps",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gridatek/tailwind-typography.git"
},
"keywords": [
"tailwindcss",
"typography",
"prose",
"css",
"v4"
],
"author": "Khalil LAGRIDA",
"license": "MIT",
"bugs": {
"url": "https://github.com/gridatek/tailwind-typography/issues"
},
"homepage": "https://github.com/gridatek/tailwind-typography#readme",
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"vite": "^7.2.2",
"@tailwindcss/vite": "^4.1.17",
"tailwindcss": "^4.1.17"
},
"scripts": {
"prepare": "husky",
"dev": "npm run start --workspace=apps/demo",
"build": "npm run build --workspaces --if-present",
"format": "prettier --write .",
"update-demo-version": "npm run update-version --workspace=apps/demo",
"test:playwright": "npm run test:playwright --workspace=apps/demo"
}
}