-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.16 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
{
"name": "@adsq/angular-signal-store",
"version": "0.2.1",
"description": "Angular SignalStore — reactive, proxy-based store with fine-grained signal wake. Uses jsnq (separate dependency) for queries/mutations.",
"repository": {
"type": "git",
"url": "git+https://github.com/adsqx/angular-signal-store.git"
},
"homepage": "https://github.com/adsqx/angular-signal-store#readme",
"bugs": "https://github.com/adsqx/angular-signal-store/issues",
"type": "module",
"module": "./dist/fesm2022/adsq-angular-signal-store.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/fesm2022/adsq-angular-signal-store.mjs"
},
"./jsnq": {
"types": "./dist/jsnq/index.d.ts",
"default": "./dist/fesm2022/adsq-angular-signal-store-jsnq.mjs"
},
"./devtools": {
"types": "./dist/devtools/index.d.ts",
"default": "./dist/fesm2022/adsq-angular-signal-store-devtools.mjs"
},
"./package.json": {
"default": "./package.json"
}
},
"sideEffects": [
"**/*-jsnq.mjs"
],
"files": [
"dist",
"README.md",
"LICENSE",
"SKILL.md",
"AGENTS.md"
],
"scripts": {
"build": "ng-packagr -p ng-package.json -c tsconfig.lib.json",
"prepack": "npm run build && npm run verify:exports",
"typecheck": "tsc --noEmit",
"test:smoke": "bun test/smoke.ts",
"bench:store": "bun test/store-throughput-bench.ts",
"verify:exports": "node scripts/verify-exports.mjs",
"test:jsnq-optional": "bun test/jsnq-optional.test.ts",
"bench:paths": "bun test/path-bench.ts",
"test:path-parity": "bun test/path-core-jsnq-parity.test.ts"
},
"peerDependencies": {
"@angular/core": ">=20.0.0 <23.0.0",
"rxjs": "^6.5.3 || ^7.4.0",
"@adsq/jsnq": "^0.1.0"
},
"devDependencies": {
"@angular/compiler": "20.3.26",
"@angular/compiler-cli": "20.3.26",
"@angular/core": "20.3.26",
"ng-packagr": "20.3.2",
"rxjs": "7.8.2",
"tslib": "^2.8.1",
"typescript": "5.8.3",
"@adsq/jsnq": "^0.1.0"
},
"keywords": [
"angular",
"signal",
"store",
"state-management",
"reactive",
"proxy",
"jsnq"
],
"license": "MIT"
}