Files

39 lines
1.0 KiB
JSON

{
"name": "@sammo-ts/common",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./auth/gameToken": {
"types": "./dist/auth/gameToken.d.ts",
"default": "./dist/auth/gameToken.js"
},
"./auth/sanctions": {
"types": "./dist/auth/sanctions.d.ts",
"default": "./dist/auth/sanctions.js"
}
},
"scripts": {
"build": "tsdown -c ./tsdown.config.ts",
"dev": "tsdown -c ./tsdown.config.ts --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run --config vitest.config.ts",
"typecheck": "tsc -b"
},
"dependencies": {
"@noble/hashes": "^2.0.1",
"es-toolkit": "^1.43.0"
},
"devDependencies": {
"tsdown": "^0.18.4",
"vitest": "^4.0.16"
}
}