generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "obsidian-fountain-editor",
"version": "1.2.0",
"description": "Obsidian plugin for Fountain (screenplay) syntax highlighting in the editor",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.10.8",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.9",
"builtin-modules": "5.0.0",
"obsidian": "latest",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.5",
"rollup": "^4.34.9",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "2.8.1",
"typescript": "5.8.2",
"xo": "^0.60.0"
}
}