-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "md-curcuma",
"version": "1.2.15",
"description": "A Typescript library for transporting and converting markdown and csv data.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cnichte/md-curcuma.git"
},
"keywords": [
"Javascript",
"Typescript",
"Hugo",
"Obsidian",
"Markdown",
"CSV",
"Transport",
"Transformation"
],
"scripts": {
"test": "tsx --test test/*.test.ts",
"watch:ts": "tsc --watch",
"build:ts": "rm -rf dist/lib && tsc",
"clean": "npm run clean:dist && npm run clean:test",
"clean:dist": "find dist -mindepth 1 -delete",
"clean:test": "find test-data-hugo -type f | xargs rm -f"
},
"author": "Carsten Nichte",
"license": "GNU GPLv3",
"homepage": "https://github.com/cnichte/md-curcuma",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.9",
"@types/node": "^20.14.2",
"@types/uuid": "^9.0.8",
"tsx": "^4.15.5",
"typescript": "^5.4.5"
},
"dependencies": {
"front-matter": "^4.0.2",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"uuid": "^10.0.0",
"xlsx": "^0.18.5",
"yaml": "^2.4.5"
}
}