-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1007 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1007 Bytes
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
{
"name": "object-scout",
"version": "0.2.2",
"description": "Track how often each key of an object is accessed — useful for debugging, analytics, or building observability into your code.",
"keywords": [
"debugging",
"analytics",
"observability"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SorenHolstHansen/object-scout.git"
},
"bugs": {
"url": "git+https://github.com/SorenHolstHansen/object-scout/issues"
},
"scripts": {
"build": "tsc",
"changeset:add": "changeset",
"prechangeset:publish": "npm run build",
"changeset:publish": "changeset publish",
"format": "npx @biomejs/biome check --write .",
"test": "node --import tsx --test \"src/**/*.test.ts\""
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@changesets/cli": "^2.29.5",
"@types/node": "^24.0.13",
"tsx": "^4.20.3"
}
}