-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "nodop",
"version": "0.6.2",
"description": "Notion Database Operator",
"type": "module",
"homepage": "https://github.com/harryzcy/nodop#readme",
"scripts": {
"start": "node build/src/main.js",
"daemon": "node build/src/main.js --daemon",
"validate:config": "node build/src/cmd/validate.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"license": "MIT",
"dependencies": {
"@notionhq/client": "2.2.15",
"js-yaml": "4.1.0",
"tslib": "2.8.1",
"winston": "3.17.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "22.9.3",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"tsutils": "3.21.0",
"typescript": "5.7.2",
"typescript-eslint": "8.15.0"
},
"volta": {
"node": "22.11.0"
}
}