generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
{
"name": "notion-to-markdown-action",
"version": "0.2.1",
"private": true,
"description": "Convert notion pages to markdown files action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"start": "ACTIONS_RUNNER_DEBUG=true ACTIONS_STEP_DEBUG=true node ./dist/index.js",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm-run-all -p format-check lint test -s build package",
"dev": "ts-node ./src/main.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ega4432/notion-markdown-action.git"
},
"keywords": [
"actions",
"node",
"notion",
"markdown"
],
"author": "ega4432",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/io": "^1.1.3",
"@notionhq/client": "^2.2.15",
"axios": "^1.7.7",
"github-slugger": "^2.0.0",
"js-yaml": "^4.1.0",
"notion-to-md": "^3.1.1",
"prettier": "^2.8.8"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.6.3",
"husky": "^9.1.7",
"jest": "^27.2.5",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.4.4"
},
"packageManager": "npm@8.11.0",
"engines": {
"npm": ">=8.11.0",
"yarn": "use npm!",
"pnpm": "use npm!"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run format"
],
"*.md": "npm run format"
}
}