-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 809 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 809 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": "split-strings",
"version": "1.0.0",
"private": true,
"description": "GitHub Action to split a string into parts using a delimiter with optional limit support.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts --out dist/ --minify",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --ext .js,.ts ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/step-security/split-strings.git"
},
"keywords": [
"split",
"node",
"github",
"actions"
],
"author": "step-security",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"axios": "^1.10.0"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@vercel/ncc": "^0.38.3",
"typescript": "^4.1.2"
}
}