-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 898 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 898 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
{
"name": "epdoptimize",
"version": "0.1.3",
"description": "Efficiently optimize EPD (Electronic Paper Display) images",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Utzel-Butzel/epdoptimize.git"
},
"scripts": {
"build": "vite build",
"prepare": "npm run build",
"examples:dev": "vite --config examples/vite.config.js",
"build:examples": "vite build --config examples/vite.config.js && cp examples/example-dither.jpg dist/examples/example-dither.jpg",
"predeploy": "npm run build:examples",
"deploy": "npx gh-pages -d dist/examples",
"deploy:npm": "npm publish --access public"
},
"files": [
"dist"
],
"devDependencies": {
"gh-pages": "^6.3.0",
"typescript": "^5.0.0",
"vite": "^5.0.0"
}
}