forked from mokeyish/obsidian-code-emitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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
40
{
"name": "code-emitter",
"description": "An obsidian plugin that allows code blocks executed interactively in sandbox like jupyter notebooks. Supported language rust、kotlin、python、Javascript、TypeScript etc.",
"private": true,
"version": "0.1.2",
"type": "module",
"scripts": {
"dev": "vite build -w -m development",
"build": "vite build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"dependencies": {
"crypto-js": "^4.1.1",
"pyodide": "^0.20.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.2.0",
"@tsconfig/svelte": "^4.0.1",
"@types/crypto-js": "^4.1.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.29.0",
"@unocss/preset-icons": "^0.51.12",
"@unocss/preset-uno": "^0.51.12",
"@unocss/preset-mini": "^0.51.12",
"@unocss/transformer-directives": "^0.51.12",
"@unocss/vite": "^0.51.12",
"builtin-modules": "3.3.0",
"obsidian": "latest",
"sass": "^1.54.8",
"svelte": "^3.59.1",
"svelte-check": "^3.3.2",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.5.0",
"typescript": "5.0.4",
"vite": "^4.3.5"
}
}