You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
{
|
|
"name": "psd.js",
|
|
"version": "3.9.1",
|
|
"description": "A general purpose Photoshop file parser.",
|
|
"keywords": [
|
|
"psd",
|
|
"parser",
|
|
"photoshop",
|
|
"adobe",
|
|
"reader"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:meltingice/psd.js.git"
|
|
},
|
|
"license": "UNLICENSED",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"browser": "./dist/index.mjs",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn build:node && yarn build:web",
|
|
"build:node": "vite build --mode=node --emptyOutDir=false",
|
|
"build:web": "vite build --mode=web --emptyOutDir=false",
|
|
"dev": "cd ./demo && yarn dev",
|
|
"prepublish": "yarn build",
|
|
"commitlint": "commitlint --edit"
|
|
},
|
|
"dependencies": {
|
|
"pngjs": "^3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.6.5",
|
|
"@commitlint/config-conventional": "^17.6.5",
|
|
"husky": "^8.0.3",
|
|
"vite": "^4.3.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"registry": "https://registry.npmjs.org"
|
|
}
|
|
}
|