-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "@sentry/status-page-list",
"version": "0.5.0",
"license": "MIT",
"description": "List of public status pages for various cloud services exposed as a JavaScript library",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "bunchee",
"generate": "tsx scripts/generateMapping.ts",
"generate:data": "tsx scripts/generateData.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "yarn format:check && yarn bunchee lint",
"lint:fix": "yarn format:fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"devDependencies": {
"@types/node": "^22.10.2",
"bunchee": "^6.0.3",
"magicast": "^0.3.5",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/status-page-list.git"
},
"bugs": {
"url": "https://github.com/getsentry/status-page-list/issues"
},
"homepage": "https://github.com/getsentry/status-page-list#readme",
"volta": {
"node": "22.12.0",
"yarn": "1.22.22"
},
"publishConfig": {
"access": "public"
}
}