-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.51 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
{
"name": "talk-control-revealjs-extensions",
"private": true,
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/TalkControl/talk-control-revealjs-extensions.git"
},
"keywords": [
"css",
"revealjs"
],
"author": "jefbinomed",
"contributors": [
"kuroidoruido"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TalkControl/talk-control-revealjs-extensions/issues"
},
"homepage": "https://github.com/TalkControl/talk-control-revealjs-extensions#readme",
"scripts": {
"dev": "npm run start",
"build": "tsc && vite build",
"prepare": "npm run build",
"preview": "npm run start",
"prestart": "npm run _prepare-demo",
"start": "parallelshell \"npm run _serve\" \"npm run _build-watch\"",
"postbuild": "tsx ./scripts/prepare-publish.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "vitest",
"_on-change:build": "chokidar \"./src\" -c \"npm run build\"",
"_on-change:copy": "chokidar \"./dist\" -c \"npm run _prepare-demo\"",
"_build-watch": "parallelshell \"npm run _on-change:build\" \"npm run _on-change:copy\"",
"_prepare-demo": "tsx ./scripts/prepare-demo.ts",
"_serve": "live-server --port=4242 --open=\"./demo/index.html\" --mount=\"/assets:./demo/assets\" --mount=\"/web_modules:./demo/web_modules\" --watch=\"./demo/web_modules/talk-control-revealjs-extensions,./demo/markdown/\""
},
"dependencies": {
"feather-icons": "^4.29.2",
"highlight.js": "^11.10.0",
"lit": "^3.1.4",
"reveal.js": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/feather-icons": "^4.29.4",
"@types/node": "^20.14.9",
"@types/reveal.js": "^5.0.3",
"@types/shelljs": "^0.8.15",
"chokidar-cli": "^3.0.0",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"live-server": "1.1.0",
"parallelshell": "3.0.1",
"prettier": "^3.3.3",
"sass": "^1.77.6",
"shelljs": "^0.8.5",
"tsx": "^4.16.2",
"type-fest": "^4.21.0",
"typescript": "^5.2.2",
"typescript-eslint": "^7.15.0",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.2.1",
"vitest": "^1.6.0"
},
"overrides": {
"eslint": "$@eslint/js"
}
}