chore(deps): update
This commit is contained in:
parent
4f90735f49
commit
ce4801939a
|
@ -2,11 +2,12 @@
|
|||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "pnpm -r --filter ./packages --parallel run dev",
|
||||
"dev": "pnpm -r --filter ./packages run dev",
|
||||
"test": "vitest test"
|
||||
},
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
"packages/*",
|
||||
"playground"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^0.20.2",
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
"description": "Write reports in markdown, and get them in docx.",
|
||||
"license": "MIT",
|
||||
"author": "syy11cn<syy11cn@outlook.com>",
|
||||
"main": "index.js",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"types": "dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.mjs",
|
||||
|
@ -13,12 +15,11 @@
|
|||
}
|
||||
},
|
||||
"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",
|
||||
"prepublishOnly": "nr build"
|
||||
},
|
||||
"dependencies": {
|
||||
"carbon-now-cli": "^1.4.0",
|
||||
"docx": "^7.3.0",
|
||||
"file-saver": "^2.0.5"
|
||||
}
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
"description": "Markdown parser for md-report.",
|
||||
"license": "MIT",
|
||||
"author": "syy11cn<syy11cn@outlook.com>",
|
||||
"main": "index.js",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"types": "dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.mjs",
|
||||
|
|
|
@ -4,6 +4,16 @@
|
|||
"description": "TypeScript definitions for md-report.",
|
||||
"license": "MIT",
|
||||
"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": {
|
||||
"build": "rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting --no-shims",
|
||||
"dev": "nr build --watch",
|
||||
|
|
2319
pnpm-lock.yaml
2319
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -1,2 +1,3 @@
|
|||
packages:
|
||||
- 'packages/**'
|
||||
- packages/*
|
||||
- playground
|
||||
|
|
Loading…
Reference in New Issue