-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.67 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
{
"name": "@grafana/incident-node",
"description": "Client wrapper for Grafana Incident's Public API",
"author": "Grafana",
"version": "1.33.1",
"license": "MIT",
"module": "dist/index.mjs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsup --config=tsup.config.ts --watch",
"watch": "pnpm start",
"build": "tsup --config=tsup.config.ts --env.NODE_ENV production",
"clean": "rm -rf dist",
"size": "size-limit",
"lint": "true",
"format": "prettier -c ./src",
"format:fix": "prettier -w ./src",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafana/incident-node.git"
},
"homepage": "https://github.com/grafana/incident-node",
"keywords": [
"grafana",
"incident",
"api",
"node"
],
"size-limit": [
{
"path": "dist/incident-api-node.cjs.production.min.js",
"limit": "25 KB"
},
{
"path": "dist/incident-api-node.esm.js",
"limit": "25 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@types/node": "^20.12.7",
"husky": "^8.0.3",
"prettier": "^3.0.2",
"size-limit": "^8.2.4",
"tslib": "^2.5.2",
"tsup": "^8.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"zod": "^3.23"
}
}