-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.08 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "crosis4furrets",
"version": "1.3.0-beta.11",
"description": "An abstraction layer on top of @replit/crosis that makes Repl connection management and operations so easy, a Furret could do it!",
"sideEffects": false,
"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",
"DOCUMENTATION.md",
"LICENSE"
],
"man": "DOCUMENTATION.md",
"scripts": {
"test": "cross-env NODE_ENV=test jest --verbose",
"lint": "eslint src --config ./eslint.config.json --ignore-path ./.gitignore",
"lint:fix": "eslint src --config ./eslint.config.json --ignore-path ./.gitignore --fix",
"format": "prettier --check . --config ./prettier.config.json --ignore-path ./.gitignore",
"format:fix": "prettier --write . --config ./prettier.config.json --ignore-path ./.gitignore",
"build": "rm -rf ./dist/** && rollup --config"
},
"repository": {
"type": "git",
"url": "https://github.com/rayhanadev/crosis4furrets.git"
},
"funding": [
"https://replit.com/@RayhanADev/Tip-Me?v=1",
"https://zink.tips/rayhanadev",
"https://www.patreon.com/user?u=87574372"
],
"keywords": [
"replit",
"replit-api",
"crosis",
"protocol",
"goval"
],
"author": "Ray Arayilakath <rayhanadev@protonmail.com> (https://www.furret.codes)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rayhanadev/crosis4furrets/issues"
},
"homepage": "https://github.com/rayhanadev/crosis4furrets",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.20.2",
"@homer0/prettier-plugin-jsdoc": "^6.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-graphql": "^2.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/gitignore-parser": "^0.0.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@types/node-fetch": "2.x",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-jest": "^29.5.0",
"babel-plugin-import-graphql": "^2.8.1",
"clean-jsdoc-theme": "^4.2.6",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jest": "^29.5.0",
"jsdoc": "^4.0.2",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"rollup": "^3.20.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"dependencies": {
"@rayhanadev/replit-gql": "^1.2.1",
"@replit/crosis": "^11.0.0",
"@replit/node-fetch": "^3.1.0",
"@replit/protocol": "^0.3.1",
"dotenv": "^16.0.3",
"dotenv-stringify": "^3.0.0",
"ignore": "^5.2.4",
"replit-login": "^2.3.2",
"ws": "^8.13.0"
},
"directories": {
"test": "tests"
}
}