-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 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
{
"name": "@salutejs/web-telemetry",
"version": "2.0.17",
"description": "Web performance monitoring",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/salute-developers/web-telemetry.git"
},
"license": "MIT",
"author": "Salute Frontend Team <salute.developers@gmail.com>",
"contributors": [],
"type": "module",
"exports": {
"./lib/*": {
"import": "./esm/*.js",
"require": "./lib/*.js"
},
"./lib": {
"import": "./esm/presets/WebTelemetry.js",
"require": "./lib/presets/WebTelemetry.js"
}
},
"files": [
"esm",
"lib"
],
"scripts": {
"build": "npm run clean && tsc --erasableSyntaxOnly && npm run build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json --erasableSyntaxOnly",
"check-types": "tsc --noEmit --erasableSyntaxOnly",
"clean": "rm -rf lib esm",
"dev": "tsc --watch",
"embed-version": "node embedVersion.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"prepare": "npm run build && npm run embed-version",
"prepublishOnly": "rm -rf ./lib ./esm && npm test && tsc",
"release": "git diff && auto shipit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"uuid": "11.1.0",
"web-vitals": "5.1.0"
},
"devDependencies": {
"@salutejs/client": "1.35.5",
"@salutejs/eslint-config": "3.2.1",
"@salutejs/prettier-config": "3.1.0",
"@types/node": "22.13.10",
"auto": "11.3.0",
"eslint": "9.22.0",
"glob": "11.0.1",
"jsdom": "25.0.1",
"prettier": "3.5.3",
"typescript": "5.8.2",
"vitest": "3.0.8"
},
"publishConfig": {
"access": "public"
}
}