generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
96 lines (96 loc) · 3.04 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "obsidian-typing",
"version": "0.3.8",
"description": "Strict note typing for Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "npx jest"
},
"keywords": [],
"author": "Nikita Konodyuk",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@esbuild-kit/esm-loader": "^2.5.5",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/babel__standalone": "^7.1.4",
"@types/jest": "^27.0.2",
"@types/node": "^14.18.54",
"@types/react": "^17.0.32",
"@types/react-dom": "^17.0.10",
"babel-jest": "^29.6.2",
"chokidar": "^3.5.3",
"esbuild": "^0.19.2",
"esbuild-css-modules-plugin": "^2.7.1",
"esbuild-jest": "^0.5.0",
"esbuild-sass-plugin": "^2.12.0",
"jest": "^29.6.2",
"obsidian": "^1.1.1",
"obsidian-dataview": "^0.4.10",
"obsidian-plugin-cli": "^0.8.0",
"postcss": "^8.4.27",
"postcss-modules": "^6.0.0",
"prettier-plugin-organize-imports": "^3.2.2",
"reflect-metadata": "^0.1.13",
"rollup": "^2.32.1",
"source-map-explorer": "^2.5.2",
"ts-jest": "^29.1.1",
"tslib": "^2.2.0",
"tsx": "^3.12.7",
"typed-scss-modules": "^7.1.2",
"typescript": "^4.2.4"
},
"dependencies": {
"@babel/standalone": "^7.16.7",
"@babel/types": "^7.21.5",
"@codemirror/autocomplete": "^6.7.1",
"@codemirror/commands": "^6.2.4",
"@codemirror/lang-html": "6.0.0",
"@codemirror/lang-css": "6.0.0",
"@codemirror/lang-javascript": "6.0.0",
"@codemirror/lang-markdown": "6.0.0",
"@codemirror/lint": "^6.2.2",
"@codemirror/theme-one-dark": "6.0.0",
"@emotion/cache": "^11.11.0",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.14",
"@lezer/common": "1.0.0",
"@lezer/css": "1.0.0",
"@lezer/generator": "1.2.0",
"@lezer/highlight": "1.0.0",
"@lezer/javascript": "1.0.0",
"@lezer/lr": "1.0.0",
"@popperjs/core": "^2.11.8",
"@types/minimatch": "^5.1.2",
"@types/parsimmon": "^1.10.6",
"@types/path-browserify": "^1.0.0",
"@types/react-datepicker": "^4.10.0",
"@types/styled-components": "^5.1.19",
"@uiw/react-codemirror": "^4.19.16",
"chrono-node": "^2.6.3",
"classnames": "^2.3.2",
"codemirror": "6.0.0",
"jest-environment-jsdom": "^29.6.2",
"js-base64": "^3.7.5",
"lucide-react": "^0.241.0",
"minimatch": "^9.0.3",
"monkey-around": "^2.2.0",
"path-browserify": "^1.0.1",
"preact": "^10.17.1",
"react": "npm:@preact/compat@^17.0.0",
"react-datepicker": "^4.8.0",
"react-dom": "npm:@preact/compat@^17.0.0",
"react-popper": "^2.3.0"
}
}