-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2.6 KB
/
package.json
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
{
"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",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"test": "jest",
"test:dev": "jest --watch --no-coverage",
"test:ci": "pnpm ts:typecheck && pnpm prettier && pnpm eslint:fix && pnpm build && jest --no-coverage && pnpm bench:skip",
"ts:typecheck": "tsc --noEmit",
"ts:performance": "rimraf ts-perf && tsc --noEmit --generateTrace ts-perf",
"bench": "pnpm -r --filter=./packages build && node ./scripts/bench.js",
"bench:skip": "node ./scripts/bench.js",
"build:class": "node ./scripts/build.class.js && pnpm prettier:fix",
"reset": "pnpm clean && pnpm -r --parallel exec rimraf node_modules && rimraf node_modules",
"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": "changeset version",
"pkg:publish": "changeset publish",
"pre-commit": "lint-staged",
"prepare": "husky install && pnpm -r build:class"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"chalk": "^5.3.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.0.12",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"gitmoji-cli": "^9.4.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"rimraf": "^6.0.1",
"ts-expect": "^1.3.0",
"ts-jest": "^29.2.4",
"tsup": "^8.2.4",
"turbo": "^2.0.12",
"typescript": "^5.5.4"
},
"gitmoji": {
"capitalizeTitle": false
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.4.0"
}