-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.55 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
54
55
56
57
{
"name": "read-only-friday",
"version": "30.6.2",
"private": true,
"type": "module",
"description": "Fails if it is friday - do not change anything on friday!",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"bundle": "npm run format && npm run package",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"local-action": "node dist/index.js",
"package": "rimraf ./dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"package:watch": "npm run package -- --watch",
"test": "jest",
"all": "npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1"
},
"devDependencies": {
"@github/local-action": "^7.0.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^26.5.1",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"eslint": "^10.10.0",
"eslint-plugin-jest": "^29.16.6",
"jest": "^30.5.1",
"prettier": "^3.9.6",
"rimraf": "^6.0.1",
"rollup": "^4.63.3",
"ts-jest": "^29.4.12",
"typescript": "^7.0.2",
"typescript-eslint": "^8.70.0"
},
"overrides": {
"minimatch": "^10.2.1",
"glob": "^11.0.0"
}
}