Files
smartstring/package.json
T

67 lines
1.6 KiB
JSON
Raw Normal View History

2016-02-23 07:06:54 +01:00
{
2023-08-18 13:12:25 +02:00
"name": "@push.rocks/smartstring",
2025-09-12 18:57:32 +00:00
"version": "4.1.0",
"private": false,
2024-04-14 18:26:18 +02:00
"description": "A library for handling strings in smart ways, including manipulation and encoding, with TypeScript support.",
2020-12-31 03:56:40 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-18 22:50:24 +01:00
"type": "module",
2016-02-23 07:06:54 +01:00
"scripts": {
"test": "tstest test/ --verbose",
"build": "tsbuild --web",
"format": "gitzone format",
2022-09-13 19:23:11 +02:00
"buildDocs": "tsdoc"
2016-02-23 07:06:54 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:16:41 +02:00
"url": "https://code.foss.global/push.rocks/smartstring.git"
2016-02-23 07:06:54 +01:00
},
"keywords": [
2024-04-14 18:26:18 +02:00
"string manipulation",
"encode",
"decode",
"base64",
"indentation",
"normalization",
2016-02-23 07:06:54 +01:00
"regex",
2024-04-14 18:26:18 +02:00
"random string",
"cryptographic string",
"domain parsing",
"git repository parsing",
"docker environment parsing"
2016-02-23 07:06:54 +01:00
],
"author": "Task Venture Capital GmbH <hello@task.vc>",
2016-02-23 07:06:54 +01:00
"license": "MIT",
"bugs": {
2023-12-27 21:57:45 +01:00
"url": "https://gitlab.com/push.rocks/smartstring/issues"
2016-02-23 07:06:54 +01:00
},
2024-05-29 14:16:41 +02:00
"homepage": "https://code.foss.global/push.rocks/smartstring",
2016-02-23 07:06:54 +01:00
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2016-02-23 07:06:54 +01:00
},
"dependencies": {
"@push.rocks/isounique": "^1.0.5"
2019-10-10 18:14:07 +02:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-12-31 03:56:40 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-10 18:14:07 +02:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2019-10-10 18:14:07 +02:00
"npmextra.json",
"readme.md"
2020-12-31 03:56:40 +00:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.28.2"
}