-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.18 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": "sets",
"version": "1.0.14",
"description": "A plugin for Obsidian.md that allows you to create, edit and search sets of notes like Notion or AnyType DBs",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"scss": "ode-sass -w styles.scss styles.css"
},
"keywords": [],
"author": "Gabriele Cannata",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.2.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"builtin-modules": "3.3.0",
"esbuild": "latest",
"esbuild-plugin-solid": "^0.5.0",
"esbuild-plugin-svgr": "^1.0.1",
"esbuild-sass-plugin": "^2.3.2",
"obsidian": "^1.4.4",
"tslib": "latest",
"typescript": "latest"
},
"dependencies": {
"@floating-ui/dom": "^1.5.1",
"@jalik/observer": "github:jalik/js-observer",
"@thisbeyond/solid-dnd": "^0.7.4",
"babel-preset-solid": "^1.7.7",
"solid-js": "^1.7.11",
"squirrelly": "^9.0.0"
}
}