-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.6 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.6 KB
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": "theauthapi",
"version": "1.0.17",
"description": "Client library for TheAuthAPI.com",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./types": {
"require": "./dist/types.d.cts",
"types": "./dist/types.d.ts"
}
},
"type": "module",
"files": [
"dist"
],
"keywords": [
"theauthapi",
"authapi"
],
"scripts": {
"test": "jest --runInBand",
"test:coverage": "jest --coverage --runInBand",
"build": "npm run build:rollup && npm run fix-cts",
"build:rollup": "rollup -c",
"fix-cts": "node scripts/convert-cts.js",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run test",
"changeset": "npx changeset",
"prepublishOnly": "npm run ci",
"local-release": "npm run ci && changeset version && changeset publish",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "npm run check-exports:all && npm run check-exports:types",
"check-exports:all": "npx attw --pack . --exclude-entrypoints ./types",
"check-exports:types": "npx attw --pack . --entrypoints ./types --profile node16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thatapicompany/theauthapi.git"
},
"author": "Aden Forshaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/thatapicompany/theauthapi/issues"
},
"homepage": "https://github.com/thatapicompany/theauthapi#readme",
"dependencies": {
"assert": "^2.0.0",
"axios": "^1.8.4",
"axios-retry": "^3.1.9",
"remove-trailing-slash": "^0.1.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@changesets/cli": "^2.28.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"@types/lodash.isstring": "^4.0.6",
"@types/lodash.omit": "^4.5.6",
"@types/ms": "^0.7.31",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"body-parser": "^1.20.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^8.5.0",
"express": "^4.15.2",
"jest": "^29.7.0",
"prettier": "2.6.2",
"rollup": "^4.37.0",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}