-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "blurhash-sw",
"version": "1.0.15",
"description": "The BlurHash API provided by ServiceWorker",
"keywords": [
"blurhash",
"serviceworker"
],
"homepage": "https://github.com/3846masa/blurhash-sw#readme",
"bugs": {
"url": "https://github.com/3846masa/blurhash-sw/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3846masa/blurhash-sw.git"
},
"license": "MIT",
"author": {
"name": "3846masa",
"email": "[email protected]"
},
"type": "commonjs",
"exports": "./dist/index.mjs",
"main": "./dist/index.cjs",
"jsdelivr": "./dist/index.js",
"unpkg": "./dist/index.js",
"module": "./dist/index.mjs",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"lint": "pnpm run \"/lint:.*/\"",
"lint:eslint": "eslint --max-warnings 0 .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"semantic-release": "semantic-release",
"test": "pnpm run lint"
},
"dependencies": {
"@3846masa/bmp": "1.1.3",
"blurhash": "2.0.5",
"regexparam": "3.0.0"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#8d5c5a796bc0b99cfa2811245e26c9980cf06d1c",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-typescript": "11.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/eslint": "9.6.1",
"@types/serviceworker": "0.0.108",
"rollup": "4.29.1",
"rollup-plugin-license": "3.5.3",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "22.0.12",
"tslib": "2.8.1",
"typescript": "5.6.3"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}