Files
romulus/package.json
Jack Hadrill 98d789bc2d
Some checks failed
CI / build (push) Successful in 19s
CI / publish (push) Failing after 7s
Update CI workflow and package configuration for Gitea npm registry
2025-09-03 20:44:51 +01:00

41 lines
925 B
JSON

{
"name": "romulus",
"version": "1.0.0",
"description": "An implementation of the Romulus-M cryptography specification.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest",
"build": "tsc",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "https://git.3t.network/3t.network/romulus-js"
},
"publishConfig": {
"registry": "https://git.3t.network/api/packages/3t.network/npm/"
},
"author": "Butlersaurus",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"dependencies": {
"@types/uuid": "^10.0.0",
"uuid": "^11.1.0"
}
}