forked from coffee-cup/obsidian-vault-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
{
"name": "@dubin/obsidian-vault-parser",
"author": "Jonathan Dubin",
"version": "0.4.5",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/obsidian-vault-parser.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"test:script": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node test.ts"
},
"size-limit": [
{
"path": "dist/obsidian-vault-parser.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/obsidian-vault-parser.esm.js",
"limit": "10 KB"
}
],
"homepage": "https://github.com/jondubin/obsidian-vault-parser",
"bugs": {
"url": "https://github.com/jondubin/obsidian-vault-parser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jondubin/obsidian-vault-parser.git"
},
"dependencies": {
"glob-promise": "^4.2.2",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.2",
"@types/node": "^16.10.3",
"husky": "^7.0.2",
"size-limit": "^4.9.2",
"ts-node": "^10.2.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {}
}