-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.23 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
52
{
"name": "blurhash-to-css",
"description": "Convert blurhash strings to CSS objects",
"version": "0.5.5",
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)",
"bugs": "https://github.com/JamieMason/blurhash-to-css/issues",
"devDependencies": {
"@types/jest": "29.2.2",
"jest": "29.3.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4",
"wasm-pack": "0.10.3"
},
"engines": {
"node": ">=10"
},
"files": [
"index.d.ts",
"index.js",
"pkg/**"
],
"keywords": [
"blur",
"blurhash",
"hash",
"image",
"image loading",
"image placeholder",
"largest contentful paint",
"perfmatters",
"performance",
"placeholder",
"rust",
"wasm",
"web vitals",
"webassembly",
"webperf"
],
"license": "MIT",
"main": "index.js",
"repository": "JamieMason/blurhash-to-css",
"scripts": {
"build": "npm run build:wasm && npm run build:ts",
"build:ts": "rm -rf ./dist && tsc --project .",
"build:wasm": "rm -rf ./pkg && wasm-pack build --release --target nodejs",
"prepack": "npm run build",
"test": "npm run test:wasm && npm run test:ts",
"test:ts": "jest",
"test:wasm": "cargo test"
},
"types": "index.d.ts"
}