forked from Trulsaa/obsidian-icloud-contacts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.12 KB
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
{
"name": "textum",
"version": "0.1.3",
"description": "Sync macOS/iCloud Contacts into your vault as structured notes and turn contact relationships (family, projects, company) into queryable, visualisable data.",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"test": "jest",
"test:debug": "node --inspect-brk --require ts-node/register ./node_modules/.bin/jest",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"deploy": "npm version patch && git push && git push --tags"
},
"keywords": [],
"author": "netzbub",
"license": "AGPL-3.0",
"dependencies": {
"@types/node": "^22.13.0",
"@types/vcf": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.2",
"obsidian": "latest",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vcf": "^2.1.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
}
}