generated from remal/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.37 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
{
"$schema": "https://json.schemastore.org/package",
"name": "template-typescript",
"version": "1.0.0",
"engines": {
"node": ">=16"
},
"main": "dist/main.js",
"scripts": {
"lint": "eslint --fix",
"test": "jest --passWithNoTests",
"tsconfig-generate-app": "node tsconfig-generate-app",
"compile": "npm run lint && rimraf build && node tsconfig-generate-app && tsc -project tsconfig.app.json --rootDir src --outDir build",
"dist": "npm run compile && rimraf dist && ncc build build/main.js --out dist",
"build": "npm run dist && npm run test"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@octokit/plugin-request-log": "1.0.4",
"@octokit/plugin-retry": "4.1.3",
"@octokit/plugin-throttling": "5.2.3",
"console-log-level": "1.4.1"
},
"devDependencies": {
"@tsconfig/node16": "1.0.4",
"@types/jest": "29.5.1",
"@types/node": "16.18.34",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"@vercel/ncc": "0.36.1",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-github": "4.7.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
"jest-circus": "29.5.0",
"jest-extended": "3.2.4",
"rimraf": "5.0.1",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
}
}