isohash/package.json

41 lines
916 B
JSON
Raw Normal View History

2020-09-29 16:21:56 +00:00
{
2023-07-10 00:41:20 +00:00
"name": "@push.rocks/isohash",
2023-04-11 16:46:15 +00:00
"version": "2.0.1",
2020-09-29 16:21:56 +00:00
"private": false,
"description": "a hash package that works cross environment",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 12:12:59 +00:00
"type": "module",
2020-09-29 16:21:56 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
},
"devDependencies": {
2023-04-11 16:46:15 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.15.11"
2020-09-29 16:21:56 +00:00
},
"dependencies": {
2023-04-11 16:46:15 +00:00
"@pushrocks/smartenv": "^5.0.5",
"@pushrocks/smarthash": "^3.0.2"
2020-09-29 16:21:56 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2023-07-10 00:41:20 +00:00
}