-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
59
60
61
62
63
64
65
66
{
"name": "@h7/compute-js-rsc",
"description": "React Server utility library for Fastly Compute",
"version": "0.1.0-alpha.4",
"repository": {
"type": "git",
"url": "git+https://github.com/harmony7/compute-js-rsc.git"
},
"author": {
"name": "Katsuyuki Omuro",
"email": "[email protected]"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": "./build/index.js",
"./origin": "./build/origin/index.js",
"./client": "./build/client/index.js",
"./ssr": "./build/ssr/index.js",
"./webpack-loader": "./build/webpack-loader/index.js",
"./webpack-plugin": "./build/webpack-plugin/index.js"
},
"scripts": {
"prepack": "npm run build",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf build",
"coverage": "c8 npm test",
"test": "npm run test:unit",
"test:unit": "node --test --no-warnings=ExperimentalWarning --loader ts-node/esm test/unit/**/*.test.ts"
},
"dependencies": {
"acorn-loose": "^8.4.0",
"react": "19.0.0-canary-7a2609eed-20240403",
"react-dom": "19.0.0-canary-7a2609eed-20240403",
"react-server-dom-webpack": "19.0.0-canary-7a2609eed-20240403"
},
"devDependencies": {
"@fastly/js-compute": "^3.11.0",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"c8": "^8.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.3",
"webpack": "^5.90.1"
},
"peerDependencies": {
"react-server-dom-webpack": "19.0.0-canary-7a2609eed-20240403",
"webpack": "^5"
},
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.d.ts",
"LICENSE",
"README.md",
"CHANGELOG.md",
"SECURITY.md"
],
"keywords": [
"react",
"rsc",
"server",
"fastly",
"compute"
]
}