-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "preview-updater",
"description": "Lightweight preview update in your repository",
"author": "Andrey Helldar <helldar@dragon-code.pro>",
"main": "./dist/index.js",
"scripts": {
"build": "ncc build ./src/index.ts",
"release": "npm run build",
"dev": "npm run build && node dist/index.js",
"coverage": "jest --coverage",
"test": "jest",
"type-check": "tsc --noEmit",
"lint": "npx @biomejs/biome lint --write --unsafe",
"format": "npx @biomejs/biome format --write",
"style": "npm run lint && npm run format"
},
"keywords": [
"preview",
"updater",
"preview-updater",
"github",
"actions",
"github-actions"
],
"license": "MIT",
"type": "commonjs",
"repository": "https://github.com/TheDragonCode/github-preview-updater",
"homepage": "https://github.com/TheDragonCode/github-preview-updater",
"bugs": {
"url": "https://github.com/TheDragonCode/github-preview-updater/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/github": "^8.0.1",
"deepmerge-ts": "^7.1.5",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@biomejs/biome": "^2.4.4",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.5",
"@vercel/ncc": "^0.38.4",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"typescript": "^5.9.3"
}
}