-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.56 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
{
"name": "tailwindest-repository",
"version": "1.0.0",
"description": "Root repository of tailwindest",
"private": false,
"author": "danpacho",
"license": "MIT",
"homepage": "https://tailwindest.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/danpacho/tailwindest"
},
"type": "module",
"packageManager": "pnpm@10.8.1",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"test": "FORCE_COLOR=1 vitest",
"web": "pnpm run --filter=web",
"test:watch": "FORCE_COLOR=1 vitest --watch -u",
"test:coverage": "FORCE_COLOR=1 vitest run --coverage",
"test:ci": "pnpm ts:typecheck && pnpm prettier && pnpm eslint:fix && pnpm build && pnpm test:coverage",
"ts:typecheck": "tsc --noEmit",
"ts:performance": "rimraf ts-perf && tsc --noEmit --generateTrace ts-perf",
"reset": "pnpm clean && pnpm -r --parallel exec rimraf node_modules dist && rimraf node_modules dist",
"reset:dist": "pnpm -r --parallel exec rimraf dist",
"prettier": "prettier 'packages/**/*.{ts,js,md}' --check",
"prettier:fix": "prettier 'packages/**/*.{ts,js,md}' --write",
"eslint": "eslint packages/**/**/*.ts",
"eslint:fix": "eslint packages/**/**/*.ts --fix",
"pkg:init": "pnpm test:ci && changeset",
"pkg:version": "pnpm build && changeset version",
"pkg:publish": "changeset publish",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitest/coverage-v8": "^3.0.8",
"chalk": "^5.4.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-config-turbo": "^2.4.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"rimraf": "^6.0.1",
"ts-expect": "^1.3.0",
"tsup": "^8.4.0",
"turbo": "^2.4.4",
"typescript": "^5.8.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.8"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}