-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "todoist-context-bridge",
"version": "0.10.2",
"description": "Bridge your note-taking and Todoist task management workflows with contextual connections. Seamlessly integrate with Dataview and Tasks plugins.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json build/ && cp src/styles.css build/",
"pretest": "eslint --ignore-path .gitignore src/",
"test": "jest --passWithNoTests",
"prettier": "prettier -w 'src/**/*.{ts,css}'",
"preversion": "npm run build && npm run test",
"version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/ && cp src/styles.css build/",
"postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js build/manifest.json build/styles.css"
},
"version-tag-prefix": "",
"keywords": [
"obsidian",
"todoist",
"task-management",
"sync"
],
"author": "wenlzhang",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"jest": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.4.1",
"ts-jest": "^29.1.1",
"tslib": "2.4.0",
"typescript": "~5.1.6"
},
"dependencies": {
"@doist/todoist-api-typescript": "^2.0.0",
"moment": "^2.29.4"
}
}