-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.44 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
54
55
56
57
58
{
"name": "eslint-plugin-react-server-components",
"version": "1.2.0",
"description": "Rules for React server components",
"type": "module",
"files": [
"dist",
"src"
],
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"scripts": {
"test": "jest",
"build": "tsup",
"lint": "tsc",
"version": "changeset version && pnpm install --lockfile-only",
"release": "pnpm build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roginfarrer/eslint-plugin-react-client-components.git"
},
"keywords": [
"eslint-plugin",
"eslint",
"react",
"next.js"
],
"author": "Rogin Farrer <rogin@roginfarrer.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/roginfarrer/eslint-plugin-react-server-components/issues"
},
"homepage": "https://github.com/roginfarrer/eslint-plugin-react-server-components#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/eslint": "^8.21.1",
"@types/estree": "^1.0.0",
"@types/estree-jsx": "^1.0.0",
"@types/jest": "^29.5.2",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"packageManager": "pnpm@9.1.2",
"dependencies": {
"eslint-plugin-react": "^7.32.2",
"globals": "^13.20.0"
},
"publishConfig": {
"access": "public"
}
}