mirror of
https://github.com/dream-num/univer.git
synced 2026-08-28 23:01:30 +08:00
101 lines
2.9 KiB
JSON
101 lines
2.9 KiB
JSON
{
|
|
"name": "@univerjs/core",
|
|
"version": "1.0.0-beta.1",
|
|
"private": false,
|
|
"description": "Core runtime, data models, command system, dependency injection, and Facade APIs for Univer.",
|
|
"author": "DreamNum Co., Ltd. <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": [
|
|
"univer",
|
|
"office-sdk",
|
|
"core",
|
|
"runtime",
|
|
"facade"
|
|
],
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*",
|
|
"./facade": "./src/facade/index.ts"
|
|
},
|
|
"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"
|
|
},
|
|
"./facade": {
|
|
"import": "./lib/es/facade.js",
|
|
"require": "./lib/cjs/facade.js",
|
|
"types": "./lib/types/facade/index.d.ts"
|
|
},
|
|
"./lib/facade": {
|
|
"import": "./lib/es/facade.js",
|
|
"require": "./lib/cjs/facade.js",
|
|
"types": "./lib/types/facade/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:bundle": "univer-cli build",
|
|
"build:types": "tsc -p tsconfig.node.json",
|
|
"build": "pnpm run build:bundle && pnpm run build:types"
|
|
},
|
|
"peerDependencies": {
|
|
"rxjs": ">=7.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@univerjs/protocol": "workspace:*",
|
|
"@univerjs/themes": "workspace:*",
|
|
"@wendellhu/redi": "1.1.2",
|
|
"async-lock": "^1.4.1",
|
|
"fast-diff": "1.3.0",
|
|
"kdbush": "^4.1.0",
|
|
"lodash-es": "^4.18.1",
|
|
"ot-json1": "^1.0.2",
|
|
"rbush": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async-lock": "^1.4.2",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/rbush": "^4.0.0",
|
|
"@univerjs-infra/shared": "workspace:*",
|
|
"rxjs": "^7.8.2",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|