generated from sota1235/ts-simple-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 978 Bytes
/
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
{
"name": "@sota1235/notion-sdk-js-helper",
"version": "2.2.0",
"description": "Helper utilities for using @notion/client",
"main": "dist/index.js",
"dependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "29.5.14",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"ts-jest": "29.2.5",
"ts-node": "^10.9.1"
},
"scripts": {
"build": "tsc",
"build:publish": "tsc -p ./tsconfig.publish.json",
"watch": "tsc --watch",
"fix": "npm run lint -- --write",
"lint": "npx @biomejs/biome check",
"test": "jest",
"test:ci": "jest -c ./jest.config.ci.js",
"debug:createPage": "ts-node src/example/createPage.ts",
"prepare": "husky"
},
"keywords": [
"notion"
],
"author": "@sota1235",
"license": "MIT",
"lint-staged": {
"*.ts": [
"npm run fix"
]
},
"peerDependencies": {
"@notionhq/client": "2.2.x"
}
}