forked from lucasvtiradentes/ticktick-api-lvt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "ticktick-api-lvt",
"version": "0.1.3-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": "npm run build",
"start": "node dist/index.js",
"dev_example": "ts-node-dev --respawn --transpile-only ./examples/dev-example.ts",
"dev": "npm run dev_example",
"build": "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": "semantic-release"
},
"dependencies": {
"bson-objectid": "^2.0.4",
"request": "^2.88.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/dotenv": "^8.2.0",
"@types/node": "^18.11.9",
"@types/request": "^2.48.8",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"prettier": "2.8.8",
"semantic-release": "^23.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
}
}