-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2 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": "replit-login",
"version": "2.3.2",
"description": "Use the Replit Login API to create Replit Tokens for applications.",
"sideEffects": true,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"lint": "eslint src --config ./eslint.config.json",
"lint:fix": "eslint src --config ./eslint.config.json --fix",
"format": "prettier --check . --config ./prettier.config.json",
"format:fix": "prettier --write . --config ./prettier.config.json",
"build": "cross-env NODE_ENV=build rimraf ./dist/** && rollup --config"
},
"repository": {
"type": "",
"url": ""
},
"keywords": [],
"author": "Ray Arayilakath <rayhanadev@protonmail.com> (https://www.furret.codes)",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/preset-env": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.3",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-jest": "^28.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.1",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"rollup": "^2.51.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"@replit/node-fetch": "^3.1.0",
"set-cookie-parser": "^2.5.1"
},
"directories": {
"test": "tests"
}
}