-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "setup-react",
"version": "0.0.0-development",
"description": "GitHub Action to set up your workflow with a specific version of React",
"author": "Kirk Eaton <contact@kirkeaton.ca>",
"bugs": {
"url": "https://github.com/kirkeaton/setup-react/issues"
},
"dependencies": {
"@actions/core": "3.0.1",
"package-manager-detector": "1.6.0"
},
"devDependencies": {
"@kirkeaton/prettier-config": "1.0.6",
"@kirkeaton/tsconfig": "3.0.0",
"@types/node": "24.12.4",
"esbuild": "0.28.0",
"prettier": "3.8.3",
"typescript": "6.0.3"
},
"engines": {
"node": ">=24"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/kirkeaton/setup-react#readme",
"keywords": [
"actions",
"react",
"setup"
],
"license": "BSD-3-Clause",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/kirkeaton/setup-react.git"
},
"scripts": {
"build": "npm run clean && ./build.mjs",
"clean": "rm -rf dist",
"format": "prettier \"**/*.{json,md,mjs,mts}\" --write",
"lint": "prettier \"**/*.{json,md,mjs,mts}\" --check",
"typecheck": "tsc --noEmit"
},
"type": "commonjs"
}