mirror of
https://github.com/kettek/png-js
synced 2025-03-14 06:24:30 -07:00
34 lines
895 B
JSON
34 lines
895 B
JSON
{
|
|
"name": "png-js-palettized",
|
|
"description": "A PNG decoder that supports palette manipulation.",
|
|
"version": "1.2.1",
|
|
"main": "dist/png-js.cjs.js",
|
|
"module": "dist/png-js.es.js",
|
|
"repository": "github:kettek/png-js",
|
|
"browser": {
|
|
"./dist/png-js.es.js": "./dist/png-js.browser.es.js",
|
|
"./dist/png-js.cjs.js": "./dist/png-js.browser.cjs.js"
|
|
},
|
|
"author": {
|
|
"name": "Ketchetwahmeegwun T. Southall",
|
|
"email": "kts@kettek.net",
|
|
"url": "https://kettek.net/"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"rollup": "^0.52.2",
|
|
"rollup-plugin-babel": "^2.7.1",
|
|
"rollup-plugin-ignore": "^1.0.3",
|
|
"rollup-plugin-replace": "^1.1.1",
|
|
"rollup-plugin-uglify": "^3.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|