-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 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": "vercel-preview-url-alias",
"version": "0.1.0",
"author": "jict",
"license": "MIT",
"packageManager": "[email protected]",
"description": "Get Vercel preview URL and alias it automatically",
"main": "lib/main.js",
"scripts": {
"build": "tsup",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "pnpm build && pnpm format && pnpm lint && pnpm package && pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justincase-jp/vercel-preview-url-alias.git"
},
"keywords": [
"vercel",
"preview url",
"alias"
],
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"axios": "^1.6.8"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jict/eslint-plugin": "^1.1.8",
"@jict/prettier-config": "^0.0.4",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"prettier": "@jict/prettier-config",
"tsup": {
"entry": [
"src/**/*.ts"
],
"outDir": "lib",
"splitting": true,
"clean": true
},
"engines": {
"node": "20.x"
}
}