-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "datacore",
"version": "0.1.19",
"description": "Reactive data engine for Obsidian.md.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "yarn run jest",
"test-watch": "yarn run jest -i --watch --no-cache",
"check-format": "yarn run prettier --check src",
"format": "yarn run prettier --write src"
},
"keywords": [
"obsidian",
"datacore",
"dataview",
"pkm"
],
"author": "Michael Brenan",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/state": "^6.0.1",
"@codemirror/view": "^6.0.1",
"@types/jest": "^27.0.1",
"@types/luxon": "^2.3.2",
"@types/node": "^16.7.13",
"@types/parsimmon": "^1.10.6",
"builtin-modules": "3.3.0",
"esbuild": "^0.16.11",
"esbuild-plugin-inline-worker": "https://github.com/mitschabaude/esbuild-plugin-inline-worker",
"jest": "^27.1.0",
"obsidian": "^1.6.6",
"prettier": "2.3.2",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^5.4.2"
},
"dependencies": {
"@datastructures-js/queue": "^4.2.3",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"emoji-regex": "^10.2.1",
"flatqueue": "^2.0.3",
"localforage": "1.10.0",
"luxon": "^2.4.0",
"parsimmon": "^1.18.0",
"preact": "^10.17.1",
"react-select": "^5.8.0",
"sorted-btree": "^1.8.1",
"sucrase": "3.35.0",
"yaml": "^2.3.3"
}
}