Skip to content

Commit

Permalink
add export script
Browse files Browse the repository at this point in the history
  • Loading branch information
clairefro committed Mar 22, 2024
1 parent 1c85290 commit f6f1e68
Showing 1 changed file with 28 additions and 26 deletions.
54 changes: 28 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
{
"name": "obsidian-chat-cbt-plugin",
"version": "1.1.4",
"description": "Plugin to guide you in reframing negative thoughts and keep an organized record of your findings",
"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"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/inputmask": "^5.0.4",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"cryptr": "^6.3.0"
}
"name": "obsidian-chat-cbt-plugin",
"version": "1.1.4",
"description": "Plugin to guide you in reframing negative thoughts and keep an organized record of your findings",
"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",
"export": "npm run build && npm run cp-build",
"cp-build": "cp main.js ~/Desktop/main.js && cp manifest.json ~/Desktop/manifest.json && cp styles.css ~/Desktop/styles.css"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/inputmask": "^5.0.4",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"cryptr": "^6.3.0"
}
}

0 comments on commit f6f1e68

Please sign in to comment.