smartjimp/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2020-02-01 17:24:41 +00:00
{
"name": "@pushrocks/smartjimp",
2023-01-09 17:19:51 +00:00
"version": "1.0.5",
2020-02-01 17:24:41 +00:00
"private": false,
"description": "a tool fr working with images in TypeScript",
2023-01-09 17:17:33 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2020-02-01 17:24:41 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
2023-01-09 17:17:33 +00:00
"buildDocs": "tsdoc"
2020-02-01 17:24:41 +00:00
},
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
2023-01-09 17:17:33 +00:00
"@gitzone/tsrun": "^1.2.39",
2020-02-01 17:24:41 +00:00
"@gitzone/tstest": "^1.0.15",
2023-01-09 17:17:33 +00:00
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.11.18"
2020-02-01 17:24:41 +00:00
},
2020-02-02 20:10:42 +00:00
"dependencies": {
2023-01-09 17:17:33 +00:00
"@pushrocks/levelcache": "^3.0.3",
"@pushrocks/smartfile": "^10.0.7",
"@pushrocks/smarthash": "^3.0.1",
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartrequest": "^2.0.11",
"@types/sharp": "^0.31.1",
"sharp": "^0.31.3"
2020-02-02 20:10:42 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2023-01-09 17:17:33 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-02 20:10:42 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2023-01-09 17:17:33 +00:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2020-02-02 20:10:42 +00:00
]
2023-01-09 17:17:34 +00:00
}