-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://json.schemastore.org/package",
"name": "clickup.js",
"version": "4.0.2",
"description": "A javascript wrapper for the Clickup API",
"keywords": [
"api",
"clickup",
"clickup-js",
"clickup.js",
"clickupjs",
"wrapper",
"wrapper-api"
],
"homepage": "https://github.com/ComfortablyCoding/clickup.js#readme",
"bugs": {
"url": "https://github.com/ComfortablyCoding/clickup.js/issues"
},
"license": "MIT",
"author": "@ComfortablyCoding",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/clickup.js.git"
},
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsdown",
"test": "vitest",
"lint": "oxlint --fix",
"format": "oxfmt --write",
"docs:generate-api": "jsdoc2md src/**/*.js > docs/api.md",
"docs:build": "vitepress build docs",
"docs:deploy": "pnpm run docs:generate-api && pnpm run docs:build",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"defu": "^6.1.6",
"p-ratelimit": "^1.0.1"
},
"devDependencies": {
"jsdoc": "^4.0.5",
"jsdoc-to-markdown": "^9.1.3",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsdown": "^0.21.7",
"vitepress": "2.0.0-alpha.12",
"vitest": "^4.0.18"
}
}