-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "round_linker",
"version": "2.0.0",
"private": true,
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"format": "prettier --write **/*.{js,ts}",
"format-check": "prettier --check **/*.{js,ts}",
"lint": "eslint",
"build": "tsc",
"package": "rollup -c",
"all": "npm run format && npm run format-check && npm run lint && npm run build && npm run package"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.9.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
}
}