-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "babel-plugin-transform-next-use-client",
"version": "1.1.1",
"description": "A Babel plugin that adds the \"use client\" directive for React components that are using client-only APIs",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"babel",
"babel-plugin",
"react",
"next",
"client-component",
"use-client"
],
"author": "Kyle Tsang",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kyletsang/babel-plugin-transform-next-use-client.git"
},
"bugs": {
"url": "https://github.com/kyletsang/babel-plugin-transform-next-use-client/issues"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prebuild": "rimraf dist",
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@kyletsang/eslint-config": "^1.1.1",
"@kyletsang/semantic-release-config": "^1.0.1",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.21",
"babel-jest": "^29.7.0",
"babel-plugin-tester": "^11.0.4",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@babel/core": "^7.22.5"
}
}