generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "action-next-env",
"version": "0.0.0",
"description": "Read .env.[development|test|production][.local] files in Next.js projects and add variables as secrets to GITHUB_ENV",
"author": {
"name": "Stefan Natter",
"url": "https://natterstefan.me>"
},
"license": "MIT",
"private": true,
"main": "lib/main.js",
"engines": {
"node": "^20.0.0"
},
"scripts": {
"all": "npm run format && npm run lint && npm run package && npm test",
"build": "rimraf dist && tsc",
"format-check": "prettier --check '**/*.ts'",
"format": "prettier --write '**/*.ts'",
"lint": "eslint .",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "is-ci || husky install",
"prepackage": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natterstefan/action-next-env.git"
},
"bugs": {
"url": "https://github.com/natterstefan/action-next-env./issues"
},
"homepage": "https://github.com/natterstefan/action-next-env.#readme",
"keywords": [
"next.js",
"nextjs",
"dotenv",
"github-action"
],
"dependencies": {
"@actions/core": "^1.10.1",
"@next/env": "^14.2.5",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.1.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^28.1.8",
"@types/node": "^20.14.12",
"@types/semantic-release": "^17.2.11",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.1",
"all-contributors-cli": "^6.26.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "8.57.0",
"eslint-config-ns-ts-base": "4.0.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.6.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-preset-ns": "^3.0.0",
"js-yaml": "^4.1.0",
"prettier": "3.3.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4"
}
}