-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
62
63
64
65
66
67
68
69
{
"name": "gcal-sync",
"description": "🔄 add an one way synchronization from ticktick tasks and github commits to google calendar and track your progress effortlessly.",
"version": "1.11.0",
"keywords": [
"google-calendar",
"github",
"productivity",
"time-tracking",
"synchronization"
],
"license": "MIT",
"author": {
"name": "Lucas Vieira",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lucasvtiradentes/gcal-sync.git"
},
"main": "./dist/index.min.js",
"scripts": {
"prepare": "husky install",
"start": "node ./dist/index.min.js",
"dev": "tsx ./resources/dev.ts",
"build_type_check": "tsc",
"build": "rimraf ./dist && rollup -c rollup.config.js",
"postbuild": "tsx ./scripts/post-build.ts",
"test": "jest",
"postversion": "echo writing new version in the dist file && npm run build",
"pub": "semantic-release",
"pub_check": "npm publish --dry-run",
"commit": "cz",
"lint:staged": "lint-staged --quiet"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/google-apps-script": "^1.0.78",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"commitizen": "^4.3.0",
"commitizen-emoji": "^1.0.5",
"dyn-markdown": "^1.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"semantic-release": "^23.0.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}