mirror of
https://github.com/dream-num/univer.git
synced 2026-08-30 17:21:11 +08:00
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "@univerjs/rpc-node",
|
|
"version": "0.10.10",
|
|
"private": false,
|
|
"description": "",
|
|
"author": "DreamNum <developer@univer.ai>",
|
|
"license": "Apache-2.0",
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/univer"
|
|
},
|
|
"homepage": "https://univer.ai",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dream-num/univer"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/dream-num/univer/issues"
|
|
},
|
|
"keywords": [],
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*"
|
|
},
|
|
"main": "./src/index.ts",
|
|
"types": "./lib/types/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "./lib/es/index.js",
|
|
"module": "./lib/es/index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/es/index.js",
|
|
"require": "./lib/cjs/index.js",
|
|
"types": "./lib/types/index.d.ts"
|
|
},
|
|
"./*": {
|
|
"import": "./lib/es/*",
|
|
"require": "./lib/cjs/*",
|
|
"types": "./lib/types/index.d.ts"
|
|
},
|
|
"./lib/*": "./lib/*"
|
|
}
|
|
},
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"coverage": "vitest run --coverage",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "univer-cli build"
|
|
},
|
|
"peerDependencies": {
|
|
"rxjs": ">=7.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@univerjs/core": "workspace:*",
|
|
"@univerjs/rpc": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@univerjs-infra/shared": "workspace:*",
|
|
"rxjs": "^7.8.2",
|
|
"typescript": "^5.9.2",
|
|
"vite": "^7.1.7",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|