-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.54 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
{
"name": "replidentity",
"version": "0.0.1",
"description": "Provides verification utilities for Repl Identity tokens.",
"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",
"LICENSE"
],
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test:esm": "cross-env NODE_ENV=test jest esm",
"test:common": "cross-env NODE_ENV=test jest common",
"test:ts": "cross-env NODE_ENV=test jest typescript",
"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",
"compile": "protoc -I=src/api --ts_out=src/api client.proto signing.proto"
},
"repository": {
"type": "git",
"url": "git://github.com/rayhanadev/replidentity-lib.git"
},
"keywords": [
"replit",
"replidentity",
"api",
"authentication"
],
"author": "Ray Arayilakath <rayhanadev@protonmail.com> (https://www.furret.codes)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rayhanadev/replidentity-lib/issues"
},
"homepage": "https://github.com/rayhanadev/replidentity-lib",
"devDependencies": {
"@babel/core": "^7.15.8",
"@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/google-protobuf": "^3.15.6",
"@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-flat-dts": "^1.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"blake2b": "^2.1.4",
"google-protobuf": "^3.20.1",
"moment": "^2.29.4",
"paseto": "^3.1.0",
"tslib": "^2.4.0"
},
"directories": {
"test": "tests"
}
}