smartjson/package.json

65 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2017-01-28 14:23:26 +00:00
{
2023-07-10 00:56:36 +00:00
"name": "@push.rocks/smartjson",
2024-05-27 22:50:30 +00:00
"version": "5.0.20",
2018-09-05 22:11:46 +00:00
"private": false,
2024-04-14 15:45:36 +00:00
"description": "A library for handling typed JSON data, providing functionalities for parsing, stringifying, and working with JSON objects, including support for encoding and decoding buffers.",
2020-10-03 11:20:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-01-28 14:23:26 +00:00
"scripts": {
2020-10-03 11:20:58 +00:00
"test": "(tstest test/ --web)",
2022-06-09 17:54:43 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2017-01-28 14:23:26 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:13:49 +00:00
"url": "https://code.foss.global/push.rocks/smartjson.git"
2017-01-28 14:23:26 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartjson/issues"
},
2024-05-29 12:13:49 +00:00
"homepage": "https://code.foss.global/push.rocks/smartjson",
2017-02-27 13:05:03 +00:00
"devDependencies": {
2024-02-25 00:43:07 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
2024-04-17 18:10:59 +00:00
"@git.zone/tstest": "^1.0.88",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
2017-02-27 13:05:03 +00:00
},
"dependencies": {
2024-03-03 09:29:18 +00:00
"@push.rocks/smartenv": "^5.0.12",
2024-04-17 18:10:59 +00:00
"@push.rocks/smartstring": "^4.0.15",
2019-12-15 19:05:20 +00:00
"fast-json-stable-stringify": "^2.1.0",
2019-07-04 15:03:15 +00:00
"lodash.clonedeep": "^4.5.0"
2019-07-04 15:04:24 +00:00
},
"files": [
2020-10-05 11:26:06 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-07-04 15:04:24 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-05 11:26:06 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-06-09 17:54:43 +00:00
],
2024-04-14 15:45:36 +00:00
"type": "module",
"keywords": [
"JSON handling",
"typed JSON",
"JSON parsing",
"JSON stringifying",
"base64 encoding",
"buffer handling",
"data serialization",
"data deserialization",
"TypeScript support",
"data encoding",
"data decoding"
]
2024-05-29 12:13:49 +00:00
}