-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "@sourcetoad/add-badge",
"version": "1.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sourcetoad/add-badge.git"
},
"bin": {
"add-badge": "./bin/add-badge.cjs",
"add-badges": "./bin/add-badges.cjs"
},
"files": [
"./fonts",
"./bin/add-badge.cjs",
"./bin/add-badges.cjs"
],
"scripts": {
"build": "node ./build.js",
"check-code": "npm run test && npm run lint && npm run prettier && npm run check-types",
"check-samples": "node ./samples/check.js",
"check-types": "tsc --noEmit",
"generate-samples": "npm run build && node ./bin/generate-samples.cjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "vitest run"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@imagemagick/magick-wasm": "^0.0.39",
"fast-glob": "^3.3.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.19.15",
"@types/yargs": "^17.0.35",
"esbuild": "0.28.1",
"eslint": "^9.39.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"prettier": "3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.11"
},
"type": "module"
}