-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 991 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 991 Bytes
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
{
"name": "toml-action",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npx rollup --config rollup.config.mjs",
"build:watch": "npm run build -- --watch",
"lint": "npx eslint src --ext .ts",
"lint:report": "npm run lint -- --output-file eslint_report.json --format json",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write ."
},
"dependencies": {
"@actions/core": "^1.11.1",
"jsonpath-plus": "^10.3.0",
"smol-toml": "^1.5.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"rollup": "^4.53.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}