-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "redditify",
"version": "0.4.1",
"description": "Embed Reddit threads on any webpage",
"main": "dist/redditify.min.js",
"module": "dist/redditify.min.js",
"types": "dist/types.d.ts",
"style": "dist/redditify.css",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build --mode es && vite build",
"lint": "eslint . --ext ts,js --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"demo": "vite --config demo/vite.config.js"
},
"keywords": [
"reddit",
"thread",
"viewer",
"comments",
"embed",
"embedding",
"vanilla-js"
],
"author": "Roman Pronskiy <roman@pronskiy.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"typescript": "^5.2.2",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"date-fns": "^3.0.6"
}
}