-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "vite-plugin-radar",
"type": "module",
"version": "0.10.0",
"packageManager": "[email protected]",
"description": "Analytics loader for vite",
"author": "stafyniaksacha",
"license": "MIT",
"repository": "stafyniaksacha/vite-plugin-radar",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"example:dev": "pnpm --filter example dev",
"example:build": "pnpm --filter example build",
"prepack": "unbuild",
"build": "unbuild",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "run-s lint release:*",
"release:standard-version": "standard-version",
"release:publish": "git push --follow-tags origin main && npm publish"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@types/node": "^20.12.12",
"eslint": "^9.18.0",
"npm-run-all": "^4.1.5",
"standard-version": "^9.5.0",
"typescript": "^5.4.5",
"unbuild": "^3.3.1",
"vite": "^6.0.7"
}
}