-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "educawtable",
"version": "0.0.0",
"description": "A simple wrapper around EDUMOOV's Educartable internal API.",
"repository": "github:LiterateInk/Educawtable",
"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": {
"build": "tsup src/index.ts --dts --minify terser --clean --format cjs,esm --sourcemap",
"release": "release-it",
"lint": "tsc && eslint .",
"tsx": "tsx"
},
"files": [
"dist"
],
"keywords": [
"api",
"wrapper",
"France",
"educartable",
"edumoov"
],
"author": "Mikkel RINGAUD <[email protected]> (https://github.com/Vexcited)",
"contributors": [
"Tom THERET (https://github.com/tom-theret)"
],
"bugs": {
"url": "https://github.com/LiterateInk/Educawtable/issues"
},
"license": "GPL-3.0",
"engines": {
"node": ">=18"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagAnnotation": "Release v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"draft": false,
"releaseName": "v${version}"
},
"npm": {
"publish": true
},
"hooks": {
"before:init": "pnpm lint",
"after:bump": "pnpm build"
}
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@types/set-cookie-parser": "^2.4.7",
"@typescript-eslint/parser": "^7.8.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"release-it": "^17.2.1",
"terser": "^5.31.0",
"tsup": "^8.0.2",
"tsx": "^4.10.1",
"typescript": "^5.4.5"
},
"dependencies": {
"set-cookie-parser": "^2.6.0"
}
}