-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.39 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vite-plugin-appsignal",
"description": "The unofficial Appsignal plugin for Vite ⚡️",
"version": "0.7.5",
"type": "module",
"author": {
"name": "Joe Pantazidis",
"url": "https://joepantazidis.me"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./client": {
"types": "./client.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"index.d.ts",
"client.d.ts"
],
"homepage": "https://github.com/pantajoe/vite-plugin-appsignal#readme",
"bugs": {
"url": "https://github.com/pantajoe/vite-plugin-appsignal/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pantajoe/vite-plugin-appsignal"
},
"keywords": [
"vite-plugin",
"appsignal",
"sourcemap"
],
"scripts": {
"build": "rimraf dist && NODE_ENV=production rollup --bundleConfigAsCjs -c rollup.config.ts --configPlugin typescript",
"dev": "NODE_ENV=develop rollup --bundleConfigAsCjs -c rollup.config.ts --configPlugin typescript -w",
"test": "jest ./src/*/**.test.ts",
"test:coverage": "jest --coverage ./src/*/**.test.ts",
"lint": "eslint --fix --max-warnings=0 ./src/**/*.ts",
"lint:tests": "eslint --fix --max-warnings=0 ./src/**/*.test.ts",
"typecheck": "tsc --noEmit",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.38.5",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-eslint": "^9.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.13",
"@types/node": "^18.0.1",
"@types/retry": "^0.12.2",
"eslint": "8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"prettier": "2.8.8",
"rimraf": "^5.0.0",
"rollup": "^3.20.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"vite": "^4.5.5"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"fast-glob": "^3.2.12",
"retry": "^0.13.1"
}
}