-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "agoda-devfeedback-vite",
"version": "0.2.0",
"description": "Vite plugin for collecting and reporting development feedback metrics",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.ts\"",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agoda-com/devfeedback-vite.git"
},
"keywords": [
"vite",
"vite-plugin",
"metrics",
"development",
"hmr",
"performance"
],
"author": "Agoda",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/agoda-com/devfeedback-vite/issues"
},
"homepage": "https://github.com/agoda-com/devfeedback-vite#readme",
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"node-fetch": "^3.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"@vitest/coverage-istanbul": "^3.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"typescript-eslint": "^7.1.0",
"vitest": "^3.0.0"
}
}