-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.91 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
{
"name": "@justscale/observable",
"version": "0.1.5",
"description": "Proxy-based observable system with dirty tracking for TypeScript",
"keywords": [
"observable",
"reactive",
"proxy",
"dirty-tracking",
"change-tracking",
"watch",
"async-generator",
"async-iterator",
"for-await",
"zod",
"model",
"state",
"typescript"
],
"homepage": "https://github.com/justscale/observable#readme",
"bugs": {
"url": "https://github.com/justscale/observable/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justscale/observable.git"
},
"author": "jaenster",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "tsx --test test/**/*.test.ts",
"test:coverage": "mkdir -p coverage && tsx --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=coverage/lcov.info test/**/*.test.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"pack:check": "pnpm pack && rm -f justscale-observable-*.tgz && test -f dist/index.js && test -f dist/index.d.ts && echo 'Package contents verified'",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/node": "^24.10.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=14.6.0"
},
"browserslist": [
"Chrome >= 84",
"Firefox >= 79",
"Safari >= 14.1",
"Edge >= 84"
],
"private": false,
"packageManager": "pnpm@10.24.0"
}