forked from LiterateInk/Pawnote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
58
59
60
61
62
{
"name": "pawnote",
"version": "1.3.0",
"description": "A purrfect API wrapper for PRONOTE.",
"repository": "https://github.com/LiterateInk/Pawnote",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"checks": "tsc && eslint .",
"test": "bun test"
},
"files": [
"dist"
],
"keywords": [
"pronote",
"wrapper",
"api"
],
"author": "LiterateInk <[email protected]> (https://literate.ink)",
"homepage": "https://docs.literate.ink/pawnote",
"bugs": {
"url": "https://github.com/LiterateInk/Pawnote/issues"
},
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@inquirer/prompts": "^4.3.3",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/bun": "^1.1.8",
"@types/node": "^22.5.4",
"@types/node-forge": "^1.3.11",
"@types/pako": "^2.0.3",
"@typescript-eslint/parser": "^8.4.0",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"terser": "^5.31.6",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@literate.ink/utilities": "1.0.0-10641118381.1",
"html-entities": "^2.5.2",
"node-forge": "^1.3.1",
"pako": "^2.1.0"
}
}