-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.53 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.53 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
44
45
46
47
48
{
"$schema": "https://json.schemastore.org/package",
"name": "read-nodejs-package-version",
"version": "1.0.0",
"engines": {
"node": ">=24"
},
"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.8.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
"@eslint/js": "10.0.1",
"@tsconfig/node24": "24.0.4",
"@types/node": "24.12.4",
"@types/semver": "7.7.1",
"@vercel/ncc": "0.38.4",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.4.2",
"jest-circus": "30.4.2",
"jest-extended": "7.0.0",
"rimraf": "6.1.3",
"semver": "^7",
"ts-jest": "29.4.9",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4"
},
"resolutions": {
"@typescript-eslint/utils": "8.59.4"
}
}