mirror of
https://github.com/dream-num/univer.git
synced 2026-09-19 10:29:12 +08:00
86 lines
2.3 KiB
JSON
86 lines
2.3 KiB
JSON
{
|
|
"name": "@univerjs/engine-render",
|
|
"version": "0.20.1",
|
|
"private": false,
|
|
"description": "UniverSheet normal base-render",
|
|
"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/*"
|
|
},
|
|
"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": {
|
|
"prepare": "node --experimental-strip-types ./scripts/generate-hyphen-pattern-loaders.mts",
|
|
"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": {
|
|
"@floating-ui/dom": "^1.7.4",
|
|
"@floating-ui/utils": "^0.2.10",
|
|
"@univerjs/core": "workspace:*",
|
|
"cjk-regex": "^3.4.0",
|
|
"franc-min": "^6.2.0",
|
|
"opentype.js": "^1.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/opentype.js": "^1.3.8",
|
|
"@univerjs-infra/shared": "workspace:*",
|
|
"jest-canvas-mock": "^2.5.2",
|
|
"rxjs": "^7.8.2",
|
|
"typescript": "^6.0.2",
|
|
"vitest": "^4.1.1"
|
|
},
|
|
"browser": {
|
|
"fs": false
|
|
}
|
|
}
|