forked from raphckrman/skolengo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.05 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "smartschooljs",
"version": "0.0.1",
"description": "A wrapper around SmartSchool internal API based on Skolengo.js by Raphaël <raphckrman>.",
"repository": "github:game2822/smartschool.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"init": "npm install",
"build": "npm install && tsup",
"compile": "node scripts/build && gen-esm-wrapper dist/index.js dist/index.mjs",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"devTest": "tsx scripts/tests/client.ts"
},
"files": [
"dist"
],
"keywords": [
"smartschool",
"api",
"wrapper",
"student",
"Belgique"
],
"author": "Raphaël <raphckrman> (https://github.com/raphckrman), Game2822 <game2822> (https://github.com/game2822)",
"license": "GPL-3.0",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@inquirer/prompts": "^4.3.3",
"@inquirer/search": "^3.0.13",
"@types/node": "^20.12.11",
"@types/node-forge": "^1.3.10",
"@types/pako": "^2.0.3",
"@types/set-cookie-parser": "^2.4.7",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-newlines": "^1.3.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sort-class-members": "^1.20.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gen-esm-wrapper": "^1.1.3",
"readline": "^1.3.0",
"release-it": "^17.0.1",
"terser": "^5.26.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"tsx": "^4.20.5",
"typescript": "^5.5.4"
},
"dependencies": {
"@noble/hashes": "^1.8.0",
"@scure/base": "^1.2.5",
"dotenv": "^17.2.2",
"typescript-eslint": "^8.32.1"
}
}