-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "@e18e/setup-publish",
"version": "0.0.0-dev",
"description": "A CLI to help with building publish workflows.",
"bin": {
"setup-publish": "cli.mjs"
},
"files": [
"lib",
"templates"
],
"keywords": [
"publish",
"oidc",
"workflow"
],
"homepage": "https://github.com/e18e/setup-publish#readme",
"bugs": {
"url": "https://github.com/e18e/setup-publish/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e18e/setup-publish.git"
},
"license": "MIT",
"author": "James Garbutt (https://github.com/43081j)",
"type": "module",
"main": "lib/main.js",
"scripts": {
"format": "prettier --write src test",
"lint": "eslint src test && prettier --check src test",
"build:clean": "premove lib",
"build:ts": "tsc",
"build": "npm run build:clean && npm run build:ts",
"test": "vitest run"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"premove": "^4.0.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.0.15"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"dset": "^3.1.4",
"picocolors": "^1.1.1",
"sade": "^1.8.1",
"tinyexec": "^1.0.4",
"yaml": "^2.8.3"
}
}