-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "@tkow/stylex-next-compiler-plugin",
"version": "0.0.2",
"main": "dist/index.js",
"files": ["src", "dist"],
"license": "MIT",
"keywords": ["stylex", "next", "compiler", "plugin"],
"author": {
"name": "Takeo Yoshida",
"email": "[email protected]"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rm -fr ./dist && tsc",
"build:watch": "rm -fr ./dist && tsc --watch"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@stylexjs/babel-plugin": "^0.6.1",
"bun-types": "latest",
"typescript": "^5.4.5",
"webpack": "^5.91.0"
},
"peerDependencies": {
"@stylexjs/babel-plugin": "*",
"@babel/core": "*",
"webpack": ">=5.0.0",
"next": ">=14.0.1",
"@babel/plugin-syntax-flow": "^7.24.0",
"@babel/plugin-syntax-jsx": "^7.24.0",
"@babel/plugin-syntax-typescript": "^7.24.0"
},
"dependencies": {
"@babel/plugin-syntax-flow": "^7.24.6",
"@babel/plugin-syntax-jsx": "^7.24.6",
"@babel/plugin-syntax-typescript": "^7.24.6"
}
}