2017-01-28 15:23:26 +01:00
{
2023-07-10 02:56:36 +02:00
"name" : "@push.rocks/smartjson" ,
2026-04-30 06:59:14 +00:00
"version" : "6.0.1" ,
2018-09-06 00:11:46 +02:00
"private" : false ,
2024-04-14 17:45:36 +02: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 15:23:26 +01:00
"scripts" : {
2020-10-03 11:20:58 +00:00
"test" : "(tstest test/ --web)" ,
2026-04-30 06:59:14 +00:00
"build" : "(tsbuild --web)" ,
2022-06-09 19:54:43 +02:00
"buildDocs" : "tsdoc"
2017-01-28 15:23:26 +01:00
} ,
"repository" : {
"type" : "git" ,
2024-05-29 14:13:49 +02:00
"url" : "https://code.foss.global/push.rocks/smartjson.git"
2017-01-28 15:23:26 +01:00
} ,
2026-04-30 06:59:14 +00:00
"author" : "Task Venture Capital GmbH" ,
2017-01-28 15:23:26 +01:00
"license" : "MIT" ,
"bugs" : {
2026-04-30 06:59:14 +00:00
"url" : "https://code.foss.global/push.rocks/smartjson/issues"
2017-01-28 15:23:26 +01:00
} ,
2024-05-29 14:13:49 +02:00
"homepage" : "https://code.foss.global/push.rocks/smartjson" ,
2017-02-27 14:05:03 +01:00
"devDependencies" : {
2026-04-30 06:59:14 +00:00
"@git.zone/tsbuild" : "^4.4.0" ,
"@git.zone/tsrun" : "^2.0.2" ,
"@git.zone/tstest" : "^3.6.3" ,
"@types/node" : "^25.6.0"
2017-02-27 14:05:03 +01:00
} ,
"dependencies" : {
2025-12-10 00:16:00 +00:00
"@push.rocks/smartenv" : "^6.0.0" ,
2025-09-12 19:16:52 +00:00
"@push.rocks/smartstring" : "^4.1.0" ,
2026-04-30 06:59:14 +00:00
"fast-json-stable-stringify" : "^2.1.0"
2019-07-04 17:04:24 +02:00
} ,
"files" : [
2020-10-05 11:26:06 +00:00
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
"dist_*/**/*" ,
"dist_ts/**/*" ,
"dist_ts_web/**/*" ,
"assets/**/*" ,
2019-07-04 17:04:24 +02:00
"cli.js" ,
2026-04-30 06:59:14 +00:00
".smartconfig.json" ,
2019-07-04 17:04:24 +02:00
"readme.md"
2020-10-05 11:26:06 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2022-06-09 19:54:43 +02:00
] ,
2024-04-14 17:45:36 +02: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"
2025-09-12 19:16:52 +00:00
] ,
2026-04-30 06:59:14 +00:00
"packageManager" : "pnpm@10.28.2"
2025-09-12 19:16:52 +00:00
}