-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "typed-notion-client",
"version": "0.0.0-internal.5",
"description": "Type-safe Notion API client",
"main": "./dist/main.js",
"module": "./dist/main.mjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.mjs",
"default": "./dist/main.js"
}
},
"files": [
"dist/**",
"src/**"
],
"scripts": {
"all": "run-s lint test build",
"build": "tsup src/main.ts --dts --format esm,cjs",
"release": "npm run build && changeset publish",
"format": "prettier -w src",
"lint": "tsc --noEmit && eslint ./src && prettier -c src",
"lint:fix": "eslint --fix ./src && prettier -w src",
"tsx": "tsx",
"test:watch": "vitest",
"clean": "rimraf dist",
"prepublishOnly": "run-s clean all",
"test": "vitest run"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.11.18",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-v8": "^1.1.3",
"esbuild-register": "^3.4.2",
"eslint": "^8.36.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-unused-imports": "^3.0.0",
"fs-extra": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"tsup": "^6.6.3",
"tsx": "^4.7.0",
"typescript": "^5.0.2",
"vitest": "^1.1.3",
"zod": "^3.22.4"
},
"keywords": [],
"author": "Thada Wangthammang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thaitype/typed-notion-client.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@notionhq/client": "^2.2.14",
"dayjs": "^1.11.10",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"tiny-invariant": "^1.3.1"
}
}