-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.7 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@tygo-van-den-hurk/slyde",
"license": "GPL-3.0-only",
"description": "Make beautifully animated Slydes and presentations from XML with ease!",
"homepage": "https://Slyde.js.org",
"author": "Tygo van den Hurk",
"version": "0.1.0",
"private": false,
"keywords": [
"cli",
"xml",
"typescript",
"slyde",
"easy",
"presentation",
"plugin-support"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Tygo-van-den-Hurk"
}
],
"support": {
"backing": {
"npm-funding": true
}
},
"repository": {
"type": "git",
"url": "git://github.com/Tygo-van-den-Hurk/Slyde.git"
},
"bugs": {
"url": "https://github.com/Tygo-van-den-Hurk/Slyde/issues"
},
"maintainers": [
"Tygo van den Hurk"
],
"bin": {
"slyde": "./dist/src/cli.js"
},
"main": "./dist/lib/index.js",
"exports": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"./dist"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"imports": {
"#browser/*": "./dist/browser/*.js",
"#src/*": "./dist/src/*.js",
"#package": "./package.json",
"#lib": "./dist/lib/index.js",
"#lib/*": "./dist/lib/*.js"
},
"scripts": {
"start": "node --enable-source-maps dist/src/cli.js",
"build": "tsc && rimraf dist/package.json",
"test": "vitest --dir test run --silent passed-only",
"test:watch": "vitest --dir test watch --cache --silent passed-only",
"test:coverage": "vitest --dir test run --coverage --silent passed-only",
"coverage": "npm run --silent test:coverage --",
"lint": "npm run --silent lint:check --",
"lint:check": "eslint '{browser,src,lib,test}/**/*.{js,ts}' --cache --cache-location ./.cache/eslint/",
"lint:write": "eslint '{browser,src,lib,test}/**/*.{js,ts}' --cache --cache-location ./.cache/eslint/ --fix",
"lint:fix": "npm run --silent lint:write --",
"format": "npm run --silent format:write --",
"format:check": "prettier '{browser,src,lib,test}/**/*.{js,ts}' --check",
"format:write": "prettier '{browser,src,lib,test}/**/*.{js,ts}' --write",
"format:fix": "npm run --silent format:write --"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-cursor": "^5.0.0",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"flat": "^6.0.1",
"http-status-codes": "^2.3.0",
"marked": "^16.4.1",
"mathjax-full": "^3.2.1",
"ora": "^9.0.0",
"prettier": "^3.6.2",
"qrcode": "^1.5.4",
"semver": "^7.7.3",
"xml-parser-xo": "^4.1.5",
"yargs": "^18.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"@types/qrcode": "^1.5.6",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.34",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.11",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.1.10",
"eslint-plugin-prettier": "^5.1.3",
"jiti": "^2.6.1",
"rimraf": "^6.1.0",
"typedoc": "^0.28.14",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}