-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 KB
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
{
"$schema": "https://json.schemastore.org/package",
"name": "read-nodejs-package-version",
"version": "1.0.0",
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.14.1",
"type": "module",
"scripts": {
"lint": "eslint --fix src/**/*",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --passWithNoTests",
"tsconfig-generate-app": "node tsconfig-generate-app",
"compile": "npm run lint && rimraf --glob build && node tsconfig-generate-app && tsc -project tsconfig.app.json --rootDir src --outDir build",
"dist": "npm run compile && rimraf --glob dist && ncc build build/main.js --out dist",
"build": "npm run dist && npm run test"
},
"dependencies": {
"@actions/core": "3.0.1",
"semver": "7.7.4"
},
"devDependencies": {
"@tsconfig/node20": "20.1.9",
"@types/node": "20.19.39",
"@types/semver": "7.7.1",
"@vercel/ncc": "0.38.4",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-github": "5.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.3.0",
"jest-circus": "30.3.0",
"jest-extended": "7.0.0",
"rimraf": "6.1.3",
"semver": "^7",
"ts-jest": "29.4.9",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0"
}
}