-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 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
60
61
62
63
64
65
66
67
{
"type": "module",
"name": "node-vikunja",
"version": "0.4.0",
"description": "Node.js and Deno compatible wrapper for the Vikunja API",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.esm.json",
"test": "jest --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"vikunja",
"api",
"wrapper",
"client",
"todo",
"task",
"management"
],
"author": {
"name": "Democratize Technology",
"email": "hello@democratize.technology",
"url": "https://democratize.technology"
},
"repository": {
"type": "git",
"url": "git+https://github.com/democratize-technology/node-vikunja.git"
},
"bugs": {
"url": "https://github.com/democratize-technology/node-vikunja/issues"
},
"homepage": "https://github.com/democratize-technology/node-vikunja#readme",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/node": "^22.15.3",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"globals": "^16.1.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.10",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
}
}