-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
89 lines (89 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "tailwindcss-themer",
"version": "0.0.0-development",
"author": "ryanclementshax",
"license": "MIT",
"description": "An unopinionated, scalable, tailwindcss theming solution",
"keywords": [
"tailwindcss",
"tailwind",
"theming",
"themer",
"dark",
"mode",
"themes",
"plugin"
],
"homepage": "https://github.com/RyanClementsHax/tailwindcss-themer#readme",
"repository": {
"type": "git",
"url": "https://github.com/RyanClementsHax/tailwindcss-themer.git"
},
"bugs": {
"url": "https://github.com/RyanClementsHax/tailwindcss-themer/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "pnpm run clean && tsc --project tsconfig.build.json",
"clean": "tsc --build --clean",
"watch": "pnpm run build --watch",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write",
"format:all": "pnpm run format .",
"lint:all": "pnpm run lint:js:all && pnpm run lint:styles:all",
"lint:js": "eslint --fix",
"lint:js:all": "pnpm run lint:js .",
"lint:styles": "stylelint --allow-empty-input --fix",
"lint:styles:all": "pnpm run lint:styles ./**/*.{scss,css}",
"test": "vitest",
"test:dev": "pnpm run test --ui",
"test:all": "pnpm run lint:all && pnpm run type-check && CI=true pnpm run test && cd e2e && pnpm run e2e",
"prepare": "husky",
"prepublishOnly": "pnpm run build",
"release": "semantic-release"
},
"dependencies": {
"color": "^4.1.0",
"just-unique": "^4.2.0",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/color": "^3.0.6",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.17.13",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.mergewith": "^4.6.9",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.13.0",
"eslint-plugin-playwright": "^2.0.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"semantic-release": "^24.1.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10",
"vitest": "^2.1.3",
"vitest-mock-extended": "^2.0.2"
},
"peerDependencies": {
"tailwindcss": "^3.1.0"
}
}