-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "@tribufu/mintaka",
"version": "0.1.8",
"description": "Mintaka JS",
"repository": "https://github.com/Tribufu/MintakaJs",
"author": "Tribufu <[email protected]>",
"license": "MIT",
"type": "module",
"types": "./build/index.d.ts",
"exports": {
"import": "./build/index.mjs",
"require": "./build/index.cjs"
},
"scripts": {
"build": "npm run clean && tsc && node scripts/esbuild.js",
"clean": "rimraf build"
},
"dependencies": {
"axios": "^1.6.3",
"camelcase-keys": "^9.1.2",
"fp-ts": "^2.16.1",
"json-bigint": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"snakecase-keys": "^5.5.0",
"toml": "^3.0.0",
"uuid": "^9.0.1",
"uuidv7": "^0.6.3"
},
"devDependencies": {
"@types/json-bigint": "^1.0.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/uuid": "^9.0.7",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"esbuild-node-externals": "^1.12.0",
"esbuild": "^0.19.10",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}