-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "react-distributed-components",
"type": "module",
"version": "0.2.0",
"description": "Effortlessly compose client and server components.",
"author": "Daniel Nagy <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-nagy/react-distributed-components.git"
},
"files": [
"build",
"!.tsinfo"
],
"exports": {
".": "./build/index.js"
},
"imports": {
"#Runtime.js": {
"node": "./build/RuntimeNode.js",
"default": "./build/RuntimeBrowser.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf build",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"prebuild": "yarn clean",
"prepack": "yarn build",
"prettier": "prettier --check --ignore-path .gitignore .",
"prettier:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {},
"peerDependencies": {
"react": "*",
"react-server-dom-webpack": "*"
},
"devDependencies": {
"@types/node": "^20.13.0",
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-plugin-require-extensions": "^0.1.3",
"prettier": "^3.3.0",
"react": "^19.0.0-rc-6d3110b4d9-20240531",
"react-dom": "^19.0.0-rc-6d3110b4d9-20240531",
"react-server-dom-webpack": "19.0.0-rc-6d3110b4d9-20240531",
"typescript": "^5.4.5"
}
}