-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 841 Bytes
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
{
"name": "simpleshare",
"version": "2.0.0",
"description": "Support 'share' links for static sites without invasive tracking",
"license-actual-since-npm-does-not-follow-the-actual-spdx-spec": "AGPL-3.0-or-later",
"license": "AGPL-3.0",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"start": "PORT=${PORT:-4000} node ./dist/server/entry.mjs"
},
"dependencies": {
"@astrojs/node": "latest",
"astro": "latest",
"handlebars": "^4.7.8"
},
"engines": {
"node": ">=20"
},
"repository": {
"url": "https://www.github.com/fileformat/simpleshare"
},
"keywords": [
"share",
"sharing",
"social",
"redirect",
"bookmark"
],
"devDependencies": {
"@types/node": "^26.2.0",
"typescript": "^7.0.2"
}
}