smartstate/package.json

64 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2019-02-21 20:48:39 +00:00
{
2023-07-27 13:20:24 +00:00
"name": "@push.rocks/smartstate",
2023-10-07 10:23:03 +00:00
"version": "2.0.17",
2019-02-21 20:48:39 +00:00
"private": false,
2024-04-14 16:24:08 +00:00
"description": "A package for handling and managing state in applications.",
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-09-11 16:39:52 +00:00
"@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.81",
"@push.rocks/tapbundle": "^5.0.15",
2023-10-03 05:53:28 +00:00
"@types/node": "^20.8.0"
2019-02-21 20:48:39 +00:00
},
"dependencies": {
2023-07-27 13:20:24 +00:00
"@push.rocks/isohash": "^2.0.1",
2023-09-11 16:39:52 +00:00
"@push.rocks/lik": "^6.0.5",
"@push.rocks/smartjson": "^5.0.10",
2023-07-27 13:20:24 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2023-10-03 05:53:28 +00:00
"@push.rocks/smartrx": "^3.0.6",
"@push.rocks/webstore": "^2.0.13"
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"
2024-04-14 16:24:08 +00:00
],
"keywords": [
"state management",
"reactive programming",
"TypeScript",
"observables",
"web storage",
"state action",
"state selection",
"state notification",
"asynchronous state",
"cumulative notification"
2024-05-29 12:16:33 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartstate",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartstate.git"
}
2024-04-14 16:24:08 +00:00
}