-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1005 Bytes
/
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
{
"name": "solid-assets",
"description": "Official assets for the SolidJS community",
"version": "0.1.0",
"license": "MIT",
"main": "dist/worker.js",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-assets"
},
"private": true,
"scripts": {
"dev": "vpc dev src/worker.ts",
"build": "tsc && vpc build -m src/worker.ts dist/worker.js",
"test": "vitest",
"coverage": "vitest run --coverage",
"deploy": "vitest run && wrangler publish",
"scripts:generate-fonts": "vite-node scripts/generate-fonts.js"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"@types/opentype.js": "^1.3.3",
"miniflare": "^2.3.0",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-node": "^0.7.10",
"vite-plugin-cloudflare": "^0.1.0",
"vite-raw-plugin": "^1.0.1",
"vitest": "^0.7.10"
},
"dependencies": {
"opentype.js": "^1.3.4"
},
"engines": {
"node": ">=16.7"
},
"packageManager": "pnpm"
}