-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.99 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
{
"name": "instantgram-light",
"version": "2024.09.03",
"description": "A bookmarklet for download photos in Instagram",
"homepage": "https://saschaheim.github.io/instantgram-light/",
"repository": {
"type": "git",
"url": "https://github.com/saschaheim/instantgram-light"
},
"license": "ISC",
"author": "Sascha Heim",
"type": "commonjs",
"main": "src/index.js",
"scripts": {
"build": "npm run build:rollup && npm run build:release",
"build:bookmarklet": "node scripts/bookmarkletify.js",
"build:bookmarklet:dev": "node scripts/bookmarkletify.js --dev",
"build:pages": "node \"src/_langs/metalsmith.js\"",
"build:release": "npm run build:bookmarklet && npm run build:pages",
"build:release:dev": "npm run build:bookmarklet:dev && npm run build:pages",
"build:rollup": "rollup -c",
"dev": "concurrently \"npm run dev:rollup\" \"npm run dev:watch\"",
"dev:rollup": "rollup -c -w",
"dev:watch": "nodemon --watch dist/main.js --exec \"npm run build:release:dev\"",
"lint": "eslint **/*.ts",
"start": "npm run dev"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/markdown": "^1.10.0",
"@metalsmith/permalinks": "^3.0.1",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.7.23",
"@types/node": "^22.5.2",
"concurrently": "^8.2.2",
"cssnano": "^7.0.5",
"globals": "^15.9.0",
"handlebars": "^4.7.8",
"jstransformer-handlebars": "^1.2.0",
"metalsmith": "^2.6.3",
"metalsmith-define": "^2.1.3",
"metalsmith-discover-partials": "^0.1.2",
"nodemon": "^3.1.4",
"rollup": "^4.21.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-swc3": "^0.11.2",
"signale": "^1.4.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"uglify-js": "^3.19.3"
},
"dependencies": {
"util": "^0.12.5"
}
}