smartcls/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2017-10-12 09:19:54 +00:00
{
2023-07-10 00:42:47 +00:00
"name": "@push.rocks/smartcls",
2021-10-06 16:00:33 +00:00
"version": "1.0.12",
2024-04-14 15:25:46 +00:00
"description": "Provides a wrapper for native AsyncLocalStorage to manage continuation-local storage.",
2020-07-20 07:39:47 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-10-12 09:19:54 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-20 07:39:47 +00:00
"test": "tstest test/",
2024-06-06 16:26:11 +00:00
"build": "tsbuild --web",
"buildDocs": "tsdoc"
2017-10-12 09:19:54 +00:00
},
"devDependencies": {
2024-06-06 16:26:11 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.14.2"
2017-10-12 09:19:54 +00:00
},
2020-07-20 07:39:47 +00:00
"private": false,
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:25:46 +00:00
],
"keywords": [
"async local storage",
"continuation-local storage",
"context management",
"async_hooks",
"node.js",
"typescript",
"asynchronous storage",
"thread local storage"
2024-05-29 12:12:15 +00:00
],
2024-06-06 16:26:11 +00:00
"homepage": "https://code.foss.global/push.rocks/smartcls#readme",
2024-05-29 12:12:15 +00:00
"repository": {
"type": "git",
2024-06-06 16:26:11 +00:00
"url": "git+https://code.foss.global/push.rocks/smartcls.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartcls/issues"
},
"type": "module"
2023-07-10 00:42:47 +00:00
}