canna71_obsidian-sheets/package.json

39 lines
1.1 KiB
JSON
Raw Normal View History

2022-09-24 17:13:25 +00:00
{
2023-09-18 17:52:24 +00:00
"name": "obsidian-workbooks",
2023-09-23 07:10:57 +00:00
"version": "1.0.1",
2023-08-17 20:38:15 +00:00
"description": "Work with Spreadsheets inside your notes",
2022-09-24 17:13:25 +00:00
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"scss": "ode-sass -w styles.scss styles.css"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.2.1",
"@types/node": "^16.11.6",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"esbuild-plugin-svgr": "^1.0.1",
"esbuild-sass-plugin": "^2.3.2",
2023-08-13 15:40:48 +00:00
"esbuild-plugin-alias": "^0.2.1",
"esbuild-plugin-less": "^1.2.1",
2022-09-24 17:13:25 +00:00
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
2023-08-04 15:38:02 +00:00
"exceljs": "^4.3.0",
2022-09-24 17:13:25 +00:00
"react": "^18.2.0",
2023-07-23 20:13:36 +00:00
"react-dom": "^18.2.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
2022-09-24 17:13:25 +00:00
}
}