-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
49
50
51
52
53
{
"name": "@mlocati/setup-msvc",
"type": "module",
"version": "1.0.0",
"description": "A GitHub Action that configures the Visual C++ environment by invoking vcvarsall.bat",
"keywords": [
"windows",
"visual-studio",
"visual-c++",
"visualcpp",
"vcvarsall.bat",
"vsdevcmd.bat",
"github",
"action"
],
"homepage": "https://github.com/mlocati/setup-msvc",
"bugs": {
"url": "https://github.com/mlocati/setup-msvc/issues"
},
"license": "MIT",
"author": "Michele Locati <michele@locati.it>",
"engines": {
"node": "^24.13"
},
"main": "dist/index.js",
"scripts": {
"lint:check": "prettier --check .prettierrc package.json jest.config.* package.json rollup.config.* tsconfig.json \"src/**/*.ts\"",
"lint:fix": "prettier --write .prettierrc package.json jest.config.* package.json rollup.config.* tsconfig.json \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"prebuild": "shx rm -rf dist",
"build": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript"
},
"dependencies": {
"@actions/core": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"shx": "^0.4.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}