-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"author": "Denny Trebbin (nerdalytics)",
"description": "Reactive dependency graph runtime for Node.js backends. Tracks dependencies between signals and propagates updates automatically.",
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "25.5.2",
"esbuild": "0.28.1",
"fast-check": "4.5.3",
"jsr": "0.14.3",
"npm-check-updates": "20.0.0",
"typescript": "6.0.2"
},
"engines": {
"node": ">=22.0.0"
},
"exports": {
".": {
"typescript": "./src/index.ts",
"import": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.min.js"
},
"require": {
"default": "./dist/src/index.min.js"
}
},
"./hooks": {
"typescript": "./src/hooks/index.ts",
"import": {
"types": "./dist/src/hooks/index.d.ts",
"default": "./dist/src/hooks/index.js"
}
}
},
"files": [
"dist/src/hooks/",
"dist/src/index.d.ts",
"dist/src/index.min.js",
"dist/src/types.d.ts",
"LICENSE",
"src/hooks/",
"src/index.ts",
"src/types.ts"
],
"keywords": [
"backend",
"batch",
"dependency-graph",
"effect",
"nodejs",
"reactive",
"signals",
"state"
],
"license": "MIT",
"main": "dist/src/index.min.js",
"name": "@nerdalytics/beacon",
"packageManager": "npm@11.12.1",
"repository": {
"type": "git",
"url": "git+https://github.com/nerdalytics/beacon.git"
},
"scripts": {
"benchmark": "node --expose-gc scripts/benchmark.ts -R 3",
"build": "npm run build:lts",
"build:lts": "tsc -p tsconfig.lts.json",
"check": "npx @biomejs/biome check --enforce-assist=true",
"check:fix": "npx @biomejs/biome check --enforce-assist=true --write",
"format": "npx @biomejs/biome format --write",
"lint": "npx @biomejs/biome lint",
"lint:fix": "npx @biomejs/biome lint --fix",
"lint:fix:unsafe": "npx @biomejs/biome lint --fix --unsafe",
"postbuild:lts": "npx esbuild dist/src/index.js --minify --sourcemap --sources-content=false --outfile=dist/src/index.min.js --format=esm --platform=node",
"prebuild:lts": "rm -rf dist/",
"prepublishOnly": "npm run build:lts",
"pretest:lts:22": "node scripts/run-lts-tests.js",
"test": "node --test --test-skip-pattern=\"COMPONENT NAME\" tests/**/*.ts",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info tests/**/*.test.ts",
"test:lts:22": "node --test --test-skip-pattern=\"COMPONENT NAME\" dist/tests/**/*.js",
"update-dependencies": "npx npm-check-updates --interactive --upgrade --removeRange"
},
"sideEffects": false,
"type": "module",
"types": "dist/src/index.d.ts",
"version": "2000.0.0"
}