-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
{
"name": "@modern-js/bff-runtime",
"description": "A Progressive React Framework for modern web development.",
"homepage": "https://modernjs.dev",
"bugs": "https://github.com/web-infra-dev/modern.js/issues",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/modern.js",
"directory": "packages/server/bff-runtime"
},
"license": "MIT",
"keywords": [
"react",
"framework",
"modern",
"modern.js"
],
"version": "3.1.4",
"types": "./src/index.ts",
"main": "./dist/cjs/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": {
"import": "./dist/esm-node/index.mjs",
"require": "./dist/cjs/index.js"
},
"default": "./dist/cjs/index.js"
}
},
"scripts": {
"prepublishOnly": "only-allow-pnpm",
"dev": "rslib build --watch",
"build": "rslib build",
"test": "rstest --passWithNoTests"
},
"dependencies": {
"@swc/helpers": "^0.5.17",
"farrow-api": "^1.12.1",
"farrow-pipeline": "^1.12.0",
"farrow-schema": "^1.12.1"
},
"devDependencies": {
"@modern-js/rslib": "workspace:*",
"@rslib/core": "0.21.0",
"@types/node": "^20",
"typescript": "^5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"types": "./dist/types/index.d.ts"
}
}