-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
{
"author": "Sebastian Pekarek <mail@sebbo.net>",
"bugs": {
"url": "https://github.com/sebbo2002/vestaboard/issues"
},
"dependencies": {
"grapheme-splitter": "^1.0.4"
},
"description": "Just another client for the Vestaboard APIs.",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.4",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.3",
"c8": "^10.1.3",
"dotenv": "^17.3.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^2.21.1",
"eslint-plugin-perfectionist": "^5.5.0",
"esm": "^3.2.25",
"globals": "^17.3.0",
"husky": "^9.1.7",
"license-checker": "^25.0.1",
"mocha": "^11.7.5",
"mochawesome": "^7.1.4",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"semantic-release-license": "^1.0.3",
"source-map-support": "^0.5.21",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"engines": {
"node": "20 || >=22.0.0"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"/dist"
],
"homepage": "https://github.com/sebbo2002/vestaboard#readme",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"name": "@sebbo2002/vestaboard",
"repository": {
"type": "git",
"url": "git+https://github.com/sebbo2002/vestaboard.git"
},
"scripts": {
"build": "tsup && cp ./dist/index.d.ts ./dist/index.d.cts",
"build-all": "./.github/workflows/build.sh",
"coverage": "c8 mocha",
"develop": "tsx src/bin/start.ts",
"license-check": "license-checker --production --summary",
"lint": "npx eslint . --fix && npx prettier . --write",
"start": "node ./dist/bin/start.js",
"test": "mocha"
},
"type": "module",
"version": "1.0.0-pre.0"
}