-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
58 lines (58 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "obsidian-calendar-ui",
"version": "0.4.0",
"description": "Calendar UI that powers obsidian-calendar-plugin",
"author": "liamcain",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"license": "MIT",
"scripts": {
"lint": "svelte-check && eslint . --ext .ts",
"build": "npm run lint && rollup -c",
"build:nolint": "rollup -c",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"@popperjs/core": "2.9.2",
"@popperjs/svelte": "0.1.1",
"obsidian-daily-notes-interface": "0.9.2",
"svelte": "3.37.0",
"svelte-portal": "2.1.2",
"tslib": "2.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "18.0.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@rollup/plugin-typescript": "8.2.1",
"@tsconfig/svelte": "1.0.10",
"@types/jest": "26.0.22",
"@types/moment": "2.13.0",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"eslint": "7.24.0",
"jest": "26.6.3",
"moment": "2.29.1",
"obsidian": "obsidianmd/obsidian-api#master",
"rollup": "2.45.1",
"rollup-plugin-svelte": "7.1.0",
"svelte-check": "1.4.0",
"svelte-preprocess": "4.7.0",
"ts-jest": "26.5.4",
"typescript": "4.2.4"
},
"jest": {
"clearMocks": true,
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
]
}
}