mirror of
https://github.com/dream-num/univer.git
synced 2026-08-28 23:01:30 +08:00
75 lines
2.0 KiB
JSON
75 lines
2.0 KiB
JSON
{
|
|
"name": "@univerjs/docs-hyper-link",
|
|
"version": "1.0.0-alpha.2",
|
|
"private": false,
|
|
"description": "Hyperlink model and commands for 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",
|
|
"docs",
|
|
"hyperlink",
|
|
"link",
|
|
"plugin"
|
|
],
|
|
"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:bundle": "univer-cli build",
|
|
"build:types": "tsc -p tsconfig.node.json",
|
|
"build": "pnpm run build:bundle && pnpm run build:types"
|
|
},
|
|
"dependencies": {
|
|
"@univerjs/core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@univerjs-infra/shared": "workspace:*",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|