mirror of
https://github.com/dream-num/univer.git
synced 2026-09-21 05:44:04 +08:00
94 lines
2.5 KiB
JSON
94 lines
2.5 KiB
JSON
{
|
|
"name": "@univerjs/core",
|
|
"version": "0.6.1",
|
|
"private": false,
|
|
"description": "Core library for Univer.",
|
|
"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": [
|
|
"univer"
|
|
],
|
|
"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/*": "./lib/*"
|
|
}
|
|
},
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"coverage": "vitest run --coverage",
|
|
"lint:types": "tsc --noEmit",
|
|
"build": "univer-cli build"
|
|
},
|
|
"peerDependencies": {
|
|
"@wendellhu/redi": "0.17.1",
|
|
"rxjs": ">=7.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@univerjs/protocol": "0.1.43",
|
|
"@wendellhu/redi": "0.17.1",
|
|
"dayjs": "^1.11.13",
|
|
"fast-diff": "1.3.0",
|
|
"kdbush": "^4.0.2",
|
|
"lodash-es": "^4.17.21",
|
|
"nanoid": "5.1.2",
|
|
"numeral": "^2.0.6",
|
|
"numfmt": "^2.5.2",
|
|
"ot-json1": "^1.0.2",
|
|
"rbush": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/numeral": "^2.0.5",
|
|
"@types/rbush": "^4.0.0",
|
|
"@univerjs-infra/shared": "workspace:*",
|
|
"rxjs": "^7.8.1",
|
|
"typescript": "^5.7.3",
|
|
"vite": "^6.2.0",
|
|
"vitest": "^3.0.7"
|
|
}
|
|
}
|