mirror of
https://github.com/touss59/obsidian-code-playground.git
synced 2026-07-22 08:29:37 +00:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "code-playground",
|
|
"version": "0.1.0",
|
|
"description": "Embed live code playgrounds in notes via Sandpack.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"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",
|
|
"lint": "eslint .",
|
|
"test": "vitest run"
|
|
},
|
|
"keywords": [],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "9.30.1",
|
|
"@testing-library/react": "^16.1.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"esbuild": "0.25.5",
|
|
"eslint": "^9.30.1",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"happy-dom": "^20.10.6",
|
|
"jiti": "2.6.1",
|
|
"obsidian": "^1.7.0",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "8.35.1",
|
|
"vitest": "^4.1.10"
|
|
},
|
|
"dependencies": {
|
|
"@codesandbox/sandpack-client": "^2.19.8",
|
|
"@codesandbox/sandpack-react": "^2.20.0",
|
|
"@codesandbox/sandpack-themes": "^2.0.21",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3"
|
|
}
|
|
}
|