-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 972 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
{
"name": "rescript-blurhash",
"version": "0.4.1",
"description": "BlurHash implementation in ReScript language",
"keywords": [
"BuckleScript",
"ReScript",
"BlurHash"
],
"author": "Armedi",
"license": "MIT",
"homepage": "https://github.com/armedi/rescript-blurhash#readme",
"repository": {
"type": "git",
"url": "https://github.com/armedi/rescript-blurhash.git"
},
"unpkg": "dist/production.min.js",
"scripts": {
"build": "rescript",
"start": "rescript build -w",
"clean": "rescript clean -with-deps",
"format": "rescript format -all",
"bundle": "npm run build && npx esbuild --bundle src/js/browser.js --outfile=dist/production.min.js --global-name=BlurHash --minify",
"prepublishOnly": "npm run bundle"
},
"devDependencies": {
"esbuild": "^0.14.27",
"rescript": "^9.1.4"
},
"files": [
"bsconfig.json",
"src/*.res*",
"src/js/externals.js",
"dist/production.min.js"
]
}