-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.6 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
{
"name": "@black-knight.dev/pinglet",
"version": "0.2.2",
"description": "Anonymous runtime analytics for npm packages — real usage, not download noise",
"type": "module",
"main": "dist/pinglet.js",
"types": "dist/pinglet.d.ts",
"exports": {
".": {
"import": "./dist/pinglet.js",
"types": "./dist/pinglet.d.ts"
},
"./server": {
"import": "./dist/pinglet-server.js",
"types": "./dist/pinglet-server.d.ts"
}
},
"bin": {
"pinglet": "dist/pinglet-cli.js",
"pinglet-server": "dist/pinglet-server.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"railway.json",
".env.example",
"docs",
"examples"
],
"scripts": {
"build": "tsc",
"test": "npm run build && node --test test/*.test.js",
"start": "npm run build && node dist/pinglet-server.js",
"dev:server": "tsx pinglet-server.ts",
"prepublishOnly": "npm test && npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endgegnerbert-tech/pinglet.git"
},
"homepage": "https://github.com/endgegnerbert-tech/pinglet#readme",
"bugs": {
"url": "https://github.com/endgegnerbert-tech/pinglet/issues"
},
"keywords": [
"analytics",
"telemetry",
"cli",
"npm",
"usage",
"tracking",
"privacy",
"anonymous",
"self-hosted",
"runtime",
"metrics",
"developer-tools",
"open-source",
"gdpr",
"consent"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsx": "^4.20.0",
"typescript": "^5.4.0"
}
}