-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "install-boost",
"version": "2.6.0",
"description": "Install boost via github actions",
"main": "dist/index.js",
"private": true,
"scripts": {
"pretest": "npm run-script build",
"test": "node dist/index.js",
"build": "ncc build -s -m -o dist --license licenses.txt src/index.ts",
"prebuild": "rimraf dist",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check ."
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarkusJx/install-boost.git"
},
"keywords": [],
"author": "MarkusJx",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/MarkusJx/install-boost/issues"
},
"homepage": "https://github.com/MarkusJx/install-boost#readme",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"axios": "^1.7.9",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/request": "^2.48.8",
"@types/semver": "^7.3.13",
"@vercel/ncc": "^0.38.1",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"typescript": "^6.0.2"
}
}