-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
51 lines (51 loc) · 1.48 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
50
51
{
"name": "placeholders.dev",
"version": "1.0.0",
"description": "Generate placeholder images with Cloudflare Workers in 330+ edge locations",
"keywords": [
"placeholders"
],
"homepage": "https://github.com/Cherry/placeholders.dev#readme",
"bugs": {
"url": "https://github.com/Cherry/placeholders.dev/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cherry/placeholders.dev.git"
},
"license": "MIT",
"author": "James Ross <[email protected]> (https://jross.me)",
"scripts": {
"check-types": "tsc --noEmit",
"dev": "wrangler dev",
"lint": "npm run lint:js && npm run lint:json",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:json": "eslint \"**/*.json\"",
"publish": "wrangler deploy --verbose",
"publish:prod": "wrangler deploy --env production --verbose",
"publish:staging": "wrangler deploy --env staging --verbose",
"start:dev": "wrangler dev",
"test": "vitest run",
"test:watch": "vitest watch"
},
"devDependencies": {
"@adaptivelink/pops": "0.5.8",
"@cloudflare/vitest-pool-workers": "0.5.40",
"@cloudflare/workers-types": "4.20241224.0",
"@nodecraft/eslint-config": "44.3.0",
"@types/sanitize-html": "2.13.0",
"@typescript-eslint/eslint-plugin": "8.18.2",
"eslint": "8.57.1",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-unicorn": "56.0.1",
"sanitize-html": "2.14.0",
"typescript": "5.7.2",
"validate-color": "2.2.4",
"vitest": "2.1.8",
"wrangler": "3.99.0"
},
"engines": {
"node": ">=18"
}
}