-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@modern-js/bff-core",
"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-core"
},
"license": "MIT",
"keywords": [
"react",
"framework",
"modern",
"modern.js"
],
"version": "3.1.1",
"types": "./dist/types/index.d.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": {
"@modern-js/utils": "workspace:*",
"@swc/helpers": "^0.5.17",
"koa-compose": "^4.1.0",
"reflect-metadata": "^0.2.2",
"type-fest": "2.19.0"
},
"devDependencies": {
"@modern-js/rslib": "workspace:*",
"@modern-js/types": "workspace:*",
"@rslib/core": "0.20.3",
"@scripts/rstest-config": "workspace:*",
"@types/koa-compose": "^3.2.9",
"@types/node": "^20",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5",
"zod": "^3.25.76"
},
"peerDependencies": {
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"zod": "^3.25.76"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"types": "./dist/types/index.d.ts"
}
}