Files
univer/presets/packages/preset-docs-drawing/package.json
T
2026-08-05 17:30:05 +08:00

88 lines
2.5 KiB
JSON

{
"name": "@univerjs/preset-docs-drawing",
"version": "1.0.0-beta.0",
"private": false,
"description": "Preset for drawing capabilities in Univer Docs.",
"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",
"univer-preset",
"docs",
"drawing"
],
"sideEffects": [
"*.css"
],
"exports": {
".": "./src/index.ts",
"./locales/*": "./src/locales/*.ts",
"./lib/*": "./lib/*"
},
"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"
},
"./locales/*": {
"import": "./lib/es/locales/*.js",
"require": "./lib/cjs/locales/*.js",
"types": "./lib/types/locales/*.d.ts"
},
"./lib/*": "./lib/*"
}
},
"main": "./src/index.ts",
"directories": {
"lib": "lib"
},
"types": "./lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepare": "univer-cli preset prepare",
"build:bundle": "univer-cli preset build --cleanup",
"build:types": "tsc -p tsconfig.node.json",
"build": "pnpm run build:bundle && pnpm run build:types",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
"rxjs": ">=7.0.0"
},
"dependencies": {
"@univerjs/core": "workspace:*",
"@univerjs/docs-drawing": "workspace:*",
"@univerjs/docs-drawing-ui": "workspace:*",
"@univerjs/drawing": "workspace:*",
"@univerjs/drawing-ui": "workspace:*"
},
"devDependencies": {
"@univerjs-infra/shared": "workspace:*",
"@univerjs/presets": "workspace:*",
"react": "18.3.1",
"react-dom": "18.3.1",
"rxjs": "^7.8.2",
"typescript": "^6.0.3"
}
}