Files
smartchok/package.json

69 lines
1.8 KiB
JSON
Raw Normal View History

2016-09-22 16:33:44 +02:00
{
2023-07-10 02:42:35 +02:00
"name": "@push.rocks/smartchok",
2025-06-26 23:16:12 +00:00
"version": "1.1.1",
2018-10-10 17:06:40 +02:00
"private": false,
"description": "A smart wrapper for chokidar 4.x with glob pattern support and enhanced features.",
2021-11-29 20:26:59 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-09-22 16:33:44 +02:00
"scripts": {
2018-10-10 17:06:40 +02:00
"test": "(npm run prepareTest && tstest test/)",
"prepareTest": "(rm -f ./test/assets/hi.txt)",
2024-01-28 01:18:39 +01:00
"build": "tsbuild",
"buildDocs": "tsdoc"
2016-09-22 16:33:44 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:12:05 +02:00
"url": "https://code.foss.global/push.rocks/smartchok.git"
2016-09-22 16:33:44 +02:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2024-01-28 01:18:39 +01:00
"url": "https://gitlab.com/push.rocks/smartchok/issues"
2016-09-22 16:33:44 +02:00
},
2024-05-29 14:12:05 +02:00
"homepage": "https://code.foss.global/push.rocks/smartchok",
2016-09-22 16:33:44 +02:00
"dependencies": {
2024-01-28 01:18:39 +01:00
"@push.rocks/lik": "^6.0.2",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrx": "^3.0.2",
"chokidar": "^4.0.3",
"picomatch": "^4.0.2"
2016-09-22 16:33:44 +02:00
},
"devDependencies": {
2024-01-28 01:18:39 +01:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.11.8"
2019-06-04 13:59:54 +02:00
},
"files": [
2021-11-29 20:26:59 +01:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-04 13:59:54 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2021-11-29 20:26:59 +01:00
],
"browserslist": [
"last 1 chrome versions"
2024-01-28 01:18:39 +01:00
],
2024-04-14 17:24:25 +02:00
"type": "module",
"keywords": [
"file watching",
"chokidar",
"filesystem",
"observable",
"typescript",
"node.js",
"development tool",
"file system events",
"real-time",
"watch files"
],
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
2025-06-26 23:15:42 +00:00
}