-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "obsidian-any-block",
"version": "3.1.9",
"description": "You can flexibility to create a 'Block' by some means.",
"author": "LincZero",
"authorUrl": "https://github.com/LincZero",
"license": "GNU Affero General Public License v3.0",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"dev2": "vite build --watch --mode=development",
"build": "npm run copy_abc_style && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build2": "npm run copy_abc_style && npx svelte-check && vite build --mode=production",
"copy_abc_style": "copyfiles --flat ./src/ABConverter/style/styles.css ./",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"bumpversion": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"devDependencies": {
"@codemirror/language": "^6.3.2",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.14.47",
"esbuild-svelte": "^0.7.3",
"obsidian": "latest",
"svelte": "^3.55.1",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vite": "^4.1.1"
},
"dependencies": {
"html-to-md": "^0.8.3"
}
}