forked from chuangcaleb/obsidian-fountain-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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-fountain-editor",
"version": "1.1.4",
"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.9.1",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.21.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^16.18.57",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"obsidian": "latest",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.1.4",
"prettier": "^3.0.3",
"rollup": "^4.0.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}