-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.92 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.92 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
{
"name": "@oliverlorenz/lib-notion",
"version": "1.0.0",
"description": "lib-notion is a lightweight library that provides types and helper functions for creating, reading, and writing Notion API payloads. It simplifies the process of working with the Notion API by offering a structured and type-safe approach to payload management.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "del-cli ./dist",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:types",
"lint:eslint": "eslint ./src --ext .ts",
"lint:prettier": "prettier \"src/**/*.ts\" --cache --check",
"lint:types": "tsc --noEmit --skipLibCheck && tsc-strict",
"test": "npm run build && jest --coverage",
"test:watch": "jest --coverage --coverage-reporters html --watch-all",
"postinstall": "npx husky init",
"prepare": "husky"
},
"engineStrict": true,
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverlorenz/lib-notion.git"
},
"keywords": [],
"author": "Oliver Lorenz",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverlorenz/lib-notion/issues"
},
"homepage": "https://github.com/oliverlorenz/lib-notion#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"del-cli": "^6.0.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"typescript": "^5.7.3",
"typescript-strict-plugin": "^2.4.4"
},
"dependencies": {
"@notionhq/client": "^2.3.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}