twirlwind 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "twirlwind",
3
+ "version": "0.1.0",
4
+ "description": "Tailwind v4-first CSS style object to utility class serializer with lossless arbitrary-property fallback.",
5
+ "keywords": [
6
+ "converter",
7
+ "css",
8
+ "css-in-js",
9
+ "css-to-tailwind",
10
+ "style-object",
11
+ "styles",
12
+ "tailwind",
13
+ "tailwind-v4",
14
+ "tailwindcss",
15
+ "utility-classes"
16
+ ],
17
+ "homepage": "https://github.com/open-pencil/twirlwind#readme",
18
+ "bugs": "https://github.com/open-pencil/twirlwind/issues",
19
+ "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/open-pencil/twirlwind"
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "type": "module",
28
+ "sideEffects": false,
29
+ "main": "dist/index.mjs",
30
+ "module": "dist/index.mjs",
31
+ "types": "dist/index.d.mts",
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.mts",
35
+ "import": "./dist/index.mjs"
36
+ }
37
+ },
38
+ "scripts": {
39
+ "test": "bun test --timeout 20000",
40
+ "typecheck": "tsgo --noEmit",
41
+ "lint": "oxlint",
42
+ "format": "oxfmt --write .",
43
+ "format:check": "oxfmt --check .",
44
+ "build": "tsdown src/index.ts --format esm --dts",
45
+ "prepublishOnly": "bun run lint && bun run format:check && bun test && bun run typecheck && bun run build",
46
+ "coverage:report": "bun scripts/report-coverage.ts"
47
+ },
48
+ "devDependencies": {
49
+ "@tailwindcss/cli": "^4.3.0",
50
+ "@types/bun": "latest",
51
+ "@typescript/native-preview": "^7.0.0-dev.20260512.1",
52
+ "mdn-data": "^2.28.1",
53
+ "oxfmt": "^0.49.0",
54
+ "oxlint": "^1.64.0",
55
+ "postcss": "^8.5.14",
56
+ "tailwindcss": "^4.3.0",
57
+ "tsdown": "^0.22.0",
58
+ "typescript": "^5.9.3"
59
+ }
60
+ }