smartstate/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2019-02-21 20:48:39 +00:00
{
"name": "@pushrocks/smartstate",
2023-04-13 12:22:32 +00:00
"version": "2.0.6",
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-04-04 19:52:27 +00:00
"@gitzone/tsbuild": "^2.1.65",
2023-03-15 16:04:29 +00:00
"@gitzone/tsbundle": "^2.0.7",
2023-04-04 18:59:45 +00:00
"@gitzone/tsrun": "^1.2.39",
2023-04-04 19:52:27 +00:00
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
2023-04-04 18:59:45 +00:00
"@types/node": "^18.15.11"
2019-02-21 20:48:39 +00:00
},
"dependencies": {
2022-03-25 12:31:21 +00:00
"@pushrocks/isohash": "^2.0.0",
2023-03-15 16:04:29 +00:00
"@pushrocks/lik": "^6.0.2",
"@pushrocks/smartjson": "^5.0.5",
2023-04-04 18:59:45 +00:00
"@pushrocks/smartpromise": "^4.0.0",
2023-03-15 16:04:29 +00:00
"@pushrocks/smartrx": "^3.0.0"
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-04-04 19:44:17 +00:00
}