Files
smartjson/package.json
T

65 lines
1.6 KiB
JSON
Raw Normal View History

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)",
"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
},
"author": "Task Venture Capital GmbH",
2017-01-28 15:23:26 +01:00
"license": "MIT",
"bugs": {
"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": {
"@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": {
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartstring": "^4.1.0",
"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",
".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"
],
"packageManager": "pnpm@10.28.2"
}