Fork of https://github.com/CCherry07/alien-deepsignals ported to alien-signals v2 with support for per-value modification tracking.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
{
|
|
"name": "alien-deepsignals",
|
|
"version": "0.1.0",
|
|
"private": false,
|
|
"author": "CCherry07",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"description": "AlienDeepSignals 🧶 -alien signals, but using regular JavaScript objects",
|
|
"scripts": {
|
|
"test": "vitest --coverage",
|
|
"dev": "tsup --watch src",
|
|
"build": "tsup",
|
|
"release": "bumpp && npm run build && npm publish --registry=https://registry.npmjs.org/"
|
|
},
|
|
"dependencies": {
|
|
"alien-signals": "^2.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.9",
|
|
"@vitest/coverage-v8": "3.0.2",
|
|
"bumpp": "^9.9.2",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.4.3",
|
|
"vitest": "^3.0.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/CCherry07/alien-deepsignals.git"
|
|
},
|
|
"keywords": [
|
|
"signal",
|
|
"signals",
|
|
"deepsignals",
|
|
"alien-signals",
|
|
"alien-deepsignals"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/CCherry07/alien-deepsignals/issues"
|
|
},
|
|
"homepage": "https://github.com/CCherry07/alien-deepsignals#readme",
|
|
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
|
|
}
|
|
|