-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 KB
/
package.json
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
{
"name": "@xt0rted/actions-toolkit",
"type": "module",
"version": "1.0.0",
"description": "Helper functions, scripts, and Typescript types for working with GitHub Actions",
"author": "xt0rted",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/actions-toolkit.git"
},
"funding": {
"url": "https://github.com/sponsors/xt0rted"
},
"bugs": {
"url": "https://github.com/xt0rted/actions-toolkit/issues"
},
"homepage": "https://github.com/xt0rted/actions-toolkit#readme",
"bin": {
"actions-toolkit": "bin/index.js"
},
"files": [
"bin/*",
"types/*"
],
"types": "./types/action-yml.d.ts",
"scripts": {
"build": "npm run build:cli",
"build:cli": "ncc build src/cli.ts -s -o bin",
"eslint": "eslint --flag unstable_ts_config",
"eslint:fix": "npm run eslint -- --fix",
"test": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.10",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.17.0",
"eslint-plugin-unicorn": "^56.0.1",
"jiti": "^2.4.2",
"js-yaml": "^4.1.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}