-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "tailwind-to-stylex",
"version": "0.5.0",
"description": "A utility for converting Tailwind CSS to Stylex",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./theme.css": "./theme.css",
"./tw": "./lib/tw.js",
"./lib/*": "./lib/*"
},
"bin": {
"tw-to-stylex": "./lib/tw-to-stylex.js"
},
"repository": "https://github.com/nmn/tw-to-stylex",
"license": "MIT",
"scripts": {
"prebuild": "node ./scripts/gen-types.js -i src/ -o lib/",
"build": "babel src/ --out-dir lib/ --copy-files",
"test": "jest"
},
"dependencies": {
"@babel/plugin-syntax-typescript": "^7.23.3",
"@stylexjs/stylex": "^0.9.3",
"lightningcss": "^1.27.0",
"postcss": "^8.4.32",
"postcss-js": "^4.0.1",
"prettier-plugin-hermes-parser": "^0.18.0",
"tailwindcss": "^4.0.0-alpha.24"
},
"jest": {},
"files": [
"lib/*",
"theme.css",
"flow-modules/*"
],
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-flow": "^7.23.3",
"babel-plugin-syntax-hermes-parser": "^0.18.0",
"flow-api-translator": "^0.18.0",
"flow-bin": "^0.226.0",
"jest": "^30.0.0-alpha.1",
"prettier": "^3.1.0",
"yargs": "^17.7.2"
}
}