-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"main": "lib/index.js",
"name": "vulcan-api-js",
"version": "3.5.4",
"description": "Unofficial API for UONET+ e-register from Vulcan.",
"scripts": {
"prepublish": "rollup -c rollup.config.mjs & yarn tsc",
"type-check": "tsc"
},
"repository": "https://github.com/avorty/vulcan-api-js.git",
"homepage": "https://avorty.github.io/vulcan-api-js",
"author": "Avorty",
"license": "MIT",
"type": "module",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.js"
},
"dependencies": {
"@babel/runtime": "^7.23.6",
"axios": "^1.6.2",
"buffer": "^6.0.3",
"cross-fetch": "^4.0.0",
"moment": "^2.29.4",
"node-forge": "^1.3.1",
"querystring": "^0.2.1",
"reflect-metadata": "^0.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/dateformat": "^5.0.2",
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.6.9",
"@types/node-forge": "^1.3.10",
"@types/uuid": "^9.0.7",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"dotenv": "^16.3.1",
"rollup": "^4.9.1",
"typescript": "^5.3.3",
"yarn": "^1.22.21"
},
"optionalDependencies": {
"node-webcrypto-ossl": "^1.0.49"
}
}