-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 KB
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
41
42
43
44
45
46
47
48
{
"name": "cooklang-obsidian",
"version": "0.6.3",
"description": "Edit and display Cooklang recipes in Obsidian",
"main": "main.js",
"type": "module",
"scripts": {
"instal-deps": "npm install",
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/autocomplete": "^6.11.1",
"@codemirror/commands": "^6.3.3",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/language": "^6.10.1",
"@codemirror/language-data": "^6.3.3",
"@codemirror/search": "^6.5.5",
"@codemirror/state": "^6.4.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.23.1",
"@lezer/common": "^1.2.1",
"@lezer/highlight": "^1.2.1",
"@lezer/lr": "^1.3.14",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.1",
"@rollup/plugin-wasm": "^6.2.2",
"@types/howler": "^2.2.12",
"@types/node": "^20.11.24",
"howler": "^2.2.4",
"obsidian": "^1.8.7",
"postcss": "^8.4.35",
"postcss-scss": "^4.0.9",
"rollup": "^4.12.0",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.71.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@cooklang/cooklang-ts": "https://pkg.pr.new/cooklang/cooklang-rs/@cooklang/cooklang-ts@de669dd"
}
}