/ package.json
package.json
1 { 2 "name": "pawnote", 3 "version": "1.6.1", 4 "description": "A purrfect API wrapper for PRONOTE.", 5 "author": "LiterateInk <contact@literate.ink> (https://literate.ink)", 6 "license": "GPL-3.0-or-later", 7 "homepage": "https://pawnote.docs.literate.ink/", 8 "repository": { 9 "type": "git", 10 "url": "git+https://github.com/LiterateInk/Pawnote.js.git" 11 }, 12 "bugs": { 13 "url": "https://github.com/LiterateInk/Pawnote.js/issues" 14 }, 15 "keywords": [ 16 "pronote", 17 "wrapper", 18 "api" 19 ], 20 "sideEffects": false, 21 "exports": { 22 "import": { 23 "types": "./dist/index.d.mts", 24 "default": "./dist/index.mjs" 25 }, 26 "require": { 27 "types": "./dist/index.d.ts", 28 "default": "./dist/index.js" 29 } 30 }, 31 "main": "./dist/index.js", 32 "module": "./dist/index.mjs", 33 "types": "./dist/index.d.ts", 34 "files": [ 35 "dist" 36 ], 37 "scripts": { 38 "build": "bunup" 39 }, 40 "dependencies": { 41 "@noble/ciphers": "^2.1.1", 42 "@noble/hashes": "^2.0.1", 43 "@scure/base": "^2.0.0", 44 "desero": "^0.5.0", 45 "fflate": "^0.8.2", 46 "maqueue": "^1.1.0", 47 "micro-rsa-dsa-dh": "^0.2.3", 48 "schwi": "^0.8.0" 49 }, 50 "devDependencies": { 51 "@types/bun": "^1.3.5", 52 "@vexcited/eslint-config": "^0.2.0", 53 "bunup": "^0.16.11", 54 "eslint": "^9.39.2", 55 "typescript": "^5.9.3" 56 } 57 }