smartstate/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2019-02-21 20:48:39 +00:00
{
2023-07-27 13:20:24 +00:00
"name": "@push.rocks/smartstate",
2023-07-27 13:20:48 +00:00
"version": "2.0.8",
2019-02-21 20:48:39 +00:00
"private": false,
"description": "a package that handles state in a good way",
2020-05-18 04:10:36 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-25 12:31:21 +00:00
"type": "module",
2019-02-21 20:48:39 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2023-04-04 19:44:16 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"buildDocs": "tsdoc"
2019-02-21 20:48:39 +00:00
},
"devDependencies": {
2023-07-27 13:20:24 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.5"
2019-02-21 20:48:39 +00:00
},
"dependencies": {
2023-07-27 13:20:24 +00:00
"@push.rocks/isohash": "^2.0.1",
"@push.rocks/lik": "^6.0.3",
"@push.rocks/smartjson": "^5.0.6",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.6"
2019-09-25 13:28:39 +00:00
},
"files": [
2020-05-18 04:10:36 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-25 13:28:39 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-11-29 23:51:05 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-09-25 13:28:39 +00:00
]
2023-07-27 13:20:25 +00:00
}