mirror of
https://github.com/dream-num/univer.git
synced 2026-08-30 17:21:11 +08:00
ee85ccbef9
* chore: migrate to eslint 8+ * chore: remove unused deps * fix: fix type check * chore(eslint): add missing rules
73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "@univerjs/core",
|
|
"version": "0.1.0-beta.2",
|
|
"private": false,
|
|
"description": "Core library for Univer.",
|
|
"author": "DreamNum <developer@univer.ai>",
|
|
"license": "Apache-2.0",
|
|
"homepage": "https://github.com/dream-num/univer",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dream-num/univer.git"
|
|
},
|
|
"keywords": [],
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*"
|
|
},
|
|
"main": "./lib/cjs/index.js",
|
|
"module": "./lib/es/index.js",
|
|
"types": "./lib/types/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "./lib/cjs/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"
|
|
}
|
|
}
|
|
},
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"coverage": "vitest run --coverage",
|
|
"lint:types": "tsc --noEmit",
|
|
"build": "tsc && vite build"
|
|
},
|
|
"peerDependencies": {
|
|
"@wendellhu/redi": ">=0.12.12",
|
|
"rxjs": ">=7.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@wendellhu/redi": "^0.12.13",
|
|
"dayjs": "^1.11.10",
|
|
"nanoid": "5.0.4",
|
|
"numeral": "^2.0.6",
|
|
"rxjs": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/numeral": "^2.0.5",
|
|
"@univerjs/infra": "workspace:*",
|
|
"@vitest/coverage-istanbul": "^1.1.1",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.10",
|
|
"vite-plugin-dts": "^3.7.0",
|
|
"vite-plugin-externals": "^0.6.2",
|
|
"vitest": "^1.1.1"
|
|
}
|
|
}
|