-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
83 lines (83 loc) · 2.35 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
78
79
80
81
82
83
{
"name": "video-to-markdown",
"version": "2.1.0",
"private": true,
"description": "How to embed a video in markdown? Here the answer. Add videos to your markdown files easier.",
"homepage": "https://video-to-markdown.netlify.com/",
"type": "module",
"author": {
"name": "Marco Montalbano",
"email": "[email protected]",
"url": "https://marcomontalbano.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcomontalbano/video-to-markdown"
},
"keywords": [
"md",
"markdown",
"video",
"youtube",
"facebook",
"vimeo",
"dailymotion",
"asciinema",
"google-drive",
"onedrive",
"peertube",
"imgur",
"loom",
"wistia",
"streamable",
"netlify"
],
"engines": {
"node": ">= 18.14.0"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"netlify-cli": "^17.23.5",
"parcel": "^2.12.0",
"posthtml-expressions": "^1.11.3",
"posthtml-include": "^2.0.1",
"rome": "^12.1.3",
"sass": "^1.77.1",
"sinon": "^18.0.0",
"uvu": "^0.5.6"
},
"dependencies": {
"@types/node": "^20.12.12",
"clipboard": "^2.0.11",
"cloudinary": "^2.2.0",
"hint.css": "^3.0.0",
"node-html-parser": "^6.1.13",
"nprogress": "^0.2.0",
"prismjs": "^1.29.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build-db": "node ./scripts/build-db",
"start:client": "parcel serve --no-autoinstall src/index.html --dist-dir dist/client",
"build:client": "parcel build --no-autoinstall src/index.html --dist-dir dist/client",
"dev": "netlify dev",
"build": "netlify build -o",
"local:build": "env $(awk 'NF > 0 && !/^#/ { print $0 }' .env | xargs) pnpm build",
"predev": "pnpm build-db",
"prebuild:client": "pnpm build-db",
"prepare": "husky install",
"test": "uvu netlify .test.js",
"format": "pnpm rome format src scripts --write",
"lint": "pnpm rome check src scripts",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u",
"dep:minor": "pnpm dep:major -t minor",
"ls-engines": "pnpm dlx ls-engines"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}