@walkeros/core 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@walkeros/core",
3
+ "description": "Core types and platform-agnostic utilities for walkerOS",
4
+ "version": "0.0.7",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "license": "MIT",
9
+ "files": [
10
+ "dist/**"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup --silent",
14
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
15
+ "dev": "jest --watchAll --colors",
16
+ "lint": "tsc && eslint \"**/*.ts*\"",
17
+ "test": "jest",
18
+ "update": "npx npm-check-updates -u && npm update"
19
+ },
20
+ "dependencies": {},
21
+ "devDependencies": {},
22
+ "repository": {
23
+ "url": "git+https://github.com/elbwalker/walkerOS.git",
24
+ "directory": "packages/core"
25
+ },
26
+ "author": "elbwalker <hello@elbwalker.com>",
27
+ "homepage": "https://github.com/elbwalker/walkerOS#readme",
28
+ "bugs": {
29
+ "url": "https://github.com/elbwalker/walkerOS/issues"
30
+ },
31
+ "keywords": [
32
+ "walker",
33
+ "walkerOS",
34
+ "analytics",
35
+ "tracking",
36
+ "data collection",
37
+ "measurement",
38
+ "data privacy",
39
+ "privacy friendly",
40
+ "web analytics",
41
+ "product analytics",
42
+ "core",
43
+ "types",
44
+ "utils"
45
+ ],
46
+ "funding": [
47
+ {
48
+ "type": "GitHub Sponsors",
49
+ "url": "https://github.com/sponsors/elbwalker"
50
+ }
51
+ ]
52
+ }