generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
43 lines (43 loc) · 1.36 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
41
42
43
{
"name": "longform",
"version": "2.0.7",
"description": "Write novels, screenplays, and other long projects in Obsidian (https://obsidian.md).",
"main": "main.js",
"scripts": {
"lint": "svelte-check --tsconfig tsconfig.json --fail-on-hints && eslint . --ext .ts",
"test:unit": "vitest",
"dev": "rollup --config rollup.config.js -w",
"build": "npm run lint && rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [],
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-typescript": "^8.3.2",
"@tsconfig/svelte": "^3.0.0",
"@types/lodash": "^4.14.171",
"@types/node": "^14.14.37",
"@types/sortablejs": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vitest/coverage-v8": "^0.34.3",
"eslint": "^8.14.0",
"obsidian": "latest",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte-check": "^2.7.0",
"svelte-preprocess": "^4.10.6",
"tslib": "^2.4.0",
"typescript": "^4.6.3",
"vitest": "^0.34.3"
},
"dependencies": {
"@popperjs/core": "^2.11.2",
"lodash": "^4.17.21",
"sortablejs": "^1.15.0",
"svelte": "^3.47.0"
}
}