-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "remix-island",
"version": "0.2.0",
"description": "utils to render remix into a dom-node instead of the whole document",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "rm -rf dist && npm run build",
"build": "npm run build:declarations && npm run build:esm && npm run build:cjs",
"build:declarations": "tsc",
"build:esm": "esbuild src/index.ts --outfile=dist/index.mjs --format=esm --target=es2020 --sourcemap --minify",
"build:cjs": "esbuild src/index.ts --outfile=dist/index.cjs --format=cjs --target=es2016 --sourcemap"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Xiphe/remix-island.git"
},
"keywords": [
"remix",
"react",
"island",
"hydration"
],
"author": "Hannes Diercks <[email protected]> (https://xiphe.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xiphe/remix-island/issues"
},
"homepage": "https://github.com/Xiphe/remix-island#readme",
"peerDependencies": {
"@remix-run/react": ">= 1",
"@remix-run/server-runtime": ">= 1",
"react": ">= 16.8",
"react-dom": ">= 16.8"
},
"devDependencies": {
"@remix-run/react": "^2.8.0",
"@remix-run/server-runtime": "^2.8.0",
"@types/react": "^18.2.63",
"@types/react-dom": "^18.2.20",
"esbuild": "^0.20.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "^5.3.3"
}
}