-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "convert-vapid-public-key",
"version": "2.0.0",
"type": "module",
"engines": {
"node": ">= 16.0.0"
},
"exports": {
"types": "./target/src/index.d.ts",
"default": "./target/src/index.js"
},
"author": "Christian Rackerseder <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/screendriver/convert-vapid-public-key.git"
},
"bugs": {
"url": "https://github.com/screendriver/convert-vapid-public-key/issues"
},
"homepage": "https://github.com/screendriver/convert-vapid-public-key#readme",
"keywords": [
"vapid",
"push-notifications",
"web-push",
"urlBase64ToUint8Array"
],
"files": [
"target/src/**/*.js",
"target/src/**/*.js.map",
"target/src/**/*.d.ts"
],
"scripts": {
"clean": "rm -rf target",
"compile": "tsc --build",
"lint": "eslint . --ext '.ts'",
"pretest:unit": "npm run compile",
"test:unit": "ava",
"test:unit:coverage": "c8 npm run test:unit",
"release:dry": "release-it --dry-run --no-npm",
"release": "release-it"
},
"devDependencies": {
"@ava/typescript": "5.0.0",
"@types/atob": "2.1.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"atob": "2.1.2",
"auto-changelog": "2.5.0",
"ava": "6.2.0",
"c8": "10.1.2",
"esbuild": "0.24.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"release-it": "17.10.0",
"tsx": "4.19.2",
"typescript": "5.6.3"
}
}