-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 931 Bytes
/
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
{
"name": "@luncheon/esbuild-plugin-linaria",
"version": "0.3.4",
"description": "An unofficial and experimental esbuild plugin for Linaria.",
"license": "WTFPL",
"repository": "luncheon/esbuild-plugin-linaria",
"keywords": [
"esbuild",
"linaria",
"css-in-js"
],
"files": [
"index.js",
"index.d.ts"
],
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run compile && npm t",
"clean": "rimraf index.js index.d.ts",
"compile": "tsc -p .",
"test": "cd test && npm t"
},
"dependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@linaria/babel": "^3.0.0-beta.0",
"@linaria/shaker": "^3.0.0-beta.23"
},
"devDependencies": {
"@types/babel__core": "^7.20.1",
"@types/node": "^18.17.8",
"esbuild": "^0.19.2",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
}
}