forked from blacksmithgu/obsidian-dataview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "obsidian-dataview",
"version": "0.5.58",
"description": "Advanced data views for Obsidian.md.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"bdd": "npx jest -i --watch --no-cache",
"build": "npx rollup --config rollup.config.js --environment BUILD:production",
"check-format": "npx prettier --check src",
"dev": "npx rollup --config rollup.config.js -w",
"format": "npx prettier --write src",
"lib": "npx rollup --config rollup.config.js --environment BUILD:lib",
"test": "npx jest"
},
"keywords": [
"obsidian",
"dataview"
],
"author": "Michael Brenan",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/luxon": "^3.2.0",
"@types/node": "^16.7.13",
"@types/papaparse": "^5.2.6",
"@types/parsimmon": "^1.10.6",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@zerollup/ts-transform-paths": "^1.7.18",
"compare-versions": "^4.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "^1.4.0",
"prettier": "2.3.2",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"rollup": "^2.79.1",
"rollup-jest": "^3.1.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.35.0",
"rollup-plugin-web-worker-loader": "^1.6.1"
},
"dependencies": {
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/state": "^6.0.1",
"@codemirror/view": "^6.0.1",
"emoji-regex": "^10.0.0",
"localforage": "^1.10.0",
"luxon": "^3.2.0",
"obsidian-calendar-ui": "^0.3.12",
"papaparse": "^5.3.1",
"parsimmon": "^1.18.0",
"preact": "^10.6.5"
}
}