-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "create-dotenv",
"version": "3.1.0",
"private": true,
"description": "Create dotenv file for github actions",
"main": "lib/main.js",
"packageManager": "pnpm@9.12.2",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamsauravsharma/create-dotenv.git"
},
"keywords": [
"actions",
"node",
"dotenv",
"github"
],
"author": "Saurav Sharma <appdroiddeveloper@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamsauravsharma/create-dotenv/issues"
},
"homepage": "https://github.com/iamsauravsharma/create-dotenv#readme",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@vercel/ncc": "^0.38.2",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}