-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 908 Bytes
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
{
"name": "adafontcheck",
"version": "2.0.0-svelte-c",
"description": "Determine if a font meets ADA requirements",
"type": "module",
"scripts": {
"predev": "npm run wasm",
"dev": "vite dev --host 0.0.0.0",
"prebuild": "npm run wasm",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0",
"precheck": "npm run wasm",
"check": "svelte-kit sync && svelte-check --threshold warning",
"wasm": "node scripts/build-wasm.mjs"
},
"keywords": [
"ADA",
"font",
"opentype",
"truetype",
"sveltekit",
"wasm"
],
"author": "Daniel Crooks",
"license": "ISC",
"dependencies": {
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^5.1.0",
"opentype.js": "^2.0.0",
"svelte": "^5.34.3",
"vite": "^6.3.5"
},
"devDependencies": {
"svelte-check": "^4.2.1"
}
}