-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
{
"name": "beaconer",
"version": "1.0.2",
"description": "A backward compatible wrapper around the Beacon API",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src/*"
],
"homepage": "https://github.com/alexfigliolia/beaconer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alexfigliolia/beaconer.git"
},
"scripts": {
"build": "ts-packager -e src",
"lint": "tsx ci/commands/Lint.ts",
"test": "tsx ci/commands/Test.ts"
},
"author": "Alex Figliolia",
"license": "MIT",
"devDependencies": {
"@figliolia/child-process": "^1.0.1",
"@figliolia/ts-packager": "^1.1.0",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "3",
"prettier": "^3.2.4",
"tsc-alias": "^1.8.8",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"keywords": [
"beacon",
"http",
"https",
"request"
],
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"module": "dist/mjs/index.js"
}