-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
{
"name": "twiv",
"version": "0.1.0",
"description": "Tailwind inline variants. A styling util (with type inference) that keeps your styles close to the markup. Like CVA without steriods.",
"author": "Kotte Aistre (https://github.com/mrtamagotchi)",
"homepage": "https://github.com/mrtamagotchi/twiv",
"repository": {
"type": "git",
"url": "git+https://github.com/mrtamagotchi/twiv.git"
},
"issues": "https://github.com/mrtamagotchi/twiv/issues",
"license": "MIT",
"keywords": [
"typescript",
"tailwind",
"inline",
"variants"
],
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host --open",
"build": "rm -rf ./dist && tsc && vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint:scripts": "eslint ./src --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier ./src --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix"
},
"peerDependencies": {
"react": "^18.2.0",
"tailwind-merge": "^2.2.1"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0-alpha.11",
"@types/node": "^20.11.24",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"dts-bundle-generator": "^9.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^4.0.0-alpha.11",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1"
},
"sideEffects": false
}