-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (31 loc) · 943 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
{
"name": "@haustle/notion-orm",
"version": "0.0.44",
"description": "tool to bring notion databases schemas/types to typescript",
"main": "build/db/index.js",
"files": ["/build"],
"bin": {
"notion": "build/src/cli.js"
},
"scripts": {
"start": "npx tsc && node build/src/index.js",
"build": "rm -rf build && tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.9",
"typescript": "^4.8.4"
},
"dependencies": {
"@notionhq/client": "^2.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Haustle/notion-orm"
},
"homepage": "https://github.com/Haustle/notion-orm#readme",
"keywords": ["notion orm", "typescript", "notion typesafety", "notion auto-complete", "notion databases", "notion-tables"]
}