chore(deps): update

This commit is contained in:
syy11cn 2022-04-16 17:15:26 +08:00
parent 4f90735f49
commit ce4801939a
6 changed files with 84 additions and 2264 deletions

View File

@ -2,11 +2,12 @@
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm -r --filter ./packages --parallel run dev", "dev": "pnpm -r --filter ./packages run dev",
"test": "vitest test" "test": "vitest test"
}, },
"workspaces": [ "workspaces": [
"packages/*" "packages/*",
"playground"
], ],
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.20.2", "@antfu/eslint-config": "^0.20.2",

View File

@ -4,7 +4,9 @@
"description": "Write reports in markdown, and get them in docx.", "description": "Write reports in markdown, and get them in docx.",
"license": "MIT", "license": "MIT",
"author": "syy11cn<syy11cn@outlook.com>", "author": "syy11cn<syy11cn@outlook.com>",
"main": "index.js", "main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": { "exports": {
".": { ".": {
"import": "./dist/index.mjs", "import": "./dist/index.mjs",
@ -13,12 +15,11 @@
} }
}, },
"scripts": { "scripts": {
"build": "rimraf dist && tsup src/**/*.ts --format cjs,esm --dts --splitting --no-shims", "build": "rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting --no-shims",
"dev": "nr build --watch", "dev": "nr build --watch",
"prepublishOnly": "nr build" "prepublishOnly": "nr build"
}, },
"dependencies": { "dependencies": {
"carbon-now-cli": "^1.4.0",
"docx": "^7.3.0", "docx": "^7.3.0",
"file-saver": "^2.0.5" "file-saver": "^2.0.5"
} }

View File

@ -4,7 +4,9 @@
"description": "Markdown parser for md-report.", "description": "Markdown parser for md-report.",
"license": "MIT", "license": "MIT",
"author": "syy11cn<syy11cn@outlook.com>", "author": "syy11cn<syy11cn@outlook.com>",
"main": "index.js", "main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": { "exports": {
".": { ".": {
"import": "./dist/index.mjs", "import": "./dist/index.mjs",

View File

@ -4,6 +4,16 @@
"description": "TypeScript definitions for md-report.", "description": "TypeScript definitions for md-report.",
"license": "MIT", "license": "MIT",
"author": "syy11cn<syy11cn@outlook.com>", "author": "syy11cn<syy11cn@outlook.com>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": { "scripts": {
"build": "rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting --no-shims", "build": "rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting --no-shims",
"dev": "nr build --watch", "dev": "nr build --watch",

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +1,3 @@
packages: packages:
- 'packages/**' - packages/*
- playground