-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.35 KB
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
{
"name": "blocksnote",
"version": "0.0.1",
"description": "A perfect wrapper for interacting with PRONOTE instances.",
"author": "Raphaël <raphckrman> (https://github.com/raphckrman)",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/BlocksHub/Blocksnote.git"
},
"scripts": {
"lint": "eslint src --ext .ts --fix",
"build": "bunup"
},
"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"
}
},
"files": [
"dist"
],
"keywords": [
"pronote",
"api",
"wrapper",
"index-education",
"student",
"France"
],
"devDependencies": {
"@eslint/js": "^9.39.2",
"@inquirer/prompts": "^7.10.1",
"@inquirer/search": "^3.2.2",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/bun": "1.3.0",
"bunup": "^0.16.17",
"chalk": "^5.6.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"lefthook": "^2.0.13",
"tsdown": "^0.15.12",
"typescript-eslint": "^8.52.0"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^2.0.1",
"fflate": "^0.8.2",
"micro-rsa-dsa-dh": "^0.2.3"
}
}