-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1009 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
34
35
36
37
{
"name": "starred-to-logseq-action",
"version": "1.3.3",
"description": "This project is a GitHub action that outputs GitHub stars in the format of Logseq documents.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"@vercel/ncc": "^0.36.1",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-circus": "^29.6.1",
"js-yaml": "^4.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"capital-case": "^1.0.4",
"dotenv": "^16.3.1",
"mkdirp": "^3.0.1",
"moment": "^2.29.4",
"param-case": "^3.0.4"
}
}