-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 KB
/
package.json
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
{
"name": "@elbwalker/utils",
"description": "Shared utils for walkerOS packages",
"version": "3.6.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/web.js",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"build:dev": "tsup --config tsup.dev.config.ts",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"dev": "jest --watchAll --colors",
"lint": "tsc --noEmit && eslint \"**/*.ts*\"",
"test": "jest --colors --coverage",
"update": "npx npm-check-updates -u && npm update"
},
"dependencies": {
"@elbwalker/types": "3.2.0"
},
"repository": {
"url": "git+https://github.com/elbwalker/walkerOS.git",
"directory": "packages/utils"
},
"author": "elbwalker <[email protected]>",
"homepage": "https://github.com/elbwalker/walkerOS#readme",
"bugs": {
"url": "https://github.com/elbwalker/walkerOS/issues"
},
"keywords": [
"walker",
"walkerOS",
"walkerOS",
"analytics",
"tracking",
"data collection",
"measurement",
"data privacy",
"privacy friendly",
"web analytics",
"product analytics"
],
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/elbwalker"
}
]
}