-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.15 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.15 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
75
{
"name": "@useoutline/analytics",
"version": "0.4.4",
"description": "Privacy Preserving, Cookie Free, Open Source Analytics tool for the Modern Web",
"repository": {
"type": "git",
"url": "git+https://github.com/useoutline/analytics-sdk.git"
},
"homepage": "https://useoutline.xyz",
"main": "dist/index.esm.js",
"type": "module",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.esm.js",
"import": "./dist/index.esm.js"
}
},
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "vitest --run",
"clean": "rimraf dist types",
"dev": "vite",
"build": "run-s test clean build:sdk",
"build:sdk": "run-s build:esm build:umd build:types",
"build:esm": "vite build --config vite.esm.config.ts",
"build:umd": "vite build --config vite.umd.config.ts",
"build:types": "tsc --project tsconfig.json --emitDeclarationOnly && tsc-alias",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ext .ts lib",
"coverage": "vitest --run --coverage",
"verify": "chmod +x ./verify.sh && ./verify.sh",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"keywords": [
"modern web analytics",
"analytics sdk",
"privacy preserving analytics",
"cookieless analytics",
"outline",
"useoutline",
"outline analytics",
"outline analytics sdk",
"analytics"
],
"author": "Shrinath Prabhu <https://github.com/shrinathprabhu>",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-v8": "^3.0.9",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.11",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.2",
"vite-plugin-dts": "^4.5.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9"
}
}