-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.83 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
{
"name": "ticktick-api-lvt",
"version": "0.0.0-development",
"description": "📅 a ticktick api wrapper package to be used in node based projects.",
"license": "MIT",
"author": {
"name": "Lucas Vieira",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lucasvtiradentes/ticktick-api-lvt.git"
},
"keywords": [
"ticktick",
"ticktick-api",
"api-wrapper",
"api",
"typescript"
],
"bugs": {
"url": "https://github.com/lucasvtiradentes/ticktick-api-lvt/issues"
},
"homepage": "https://github.com/lucasvtiradentes/ticktick-api-lvt",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"start": "node dist/index.js",
"dev": "tsx ./examples/dev-example.ts",
"build": "rimraf ./dist && tsc",
"check_package": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepub": "echo prepublish scripts && npm run build && npm run check_package",
"commit": "cz",
"semantic-release": "HUSKY=0 semantic-release"
},
"dependencies": {
"request": "^2.88.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.10.7",
"@types/request": "^2.48.12",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}