-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.02 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
{
"name": "notion-exporter",
"author": "Yann Bolliger",
"repository": {
"type": "git",
"url": "git+https://github.com/yannbolliger/notion-exporter.git"
},
"version": "0.6.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"module": "dist/notion-exporter.esm.js",
"bin": "./bin/index.js",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"cli": "node bin"
},
"dependencies": {
"adm-zip": "^0.5.10",
"axios": "^1.6.2",
"sade": "^1.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/uuid": "^9.0.1",
"husky": "^6.0.0",
"np": "^10.0.5",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.18",
"tsdx": "0.14.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src"
}
},
"engines": {
"node": ">=16.0.0"
}
}