-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "@plasmo-corp/soft-secret",
"version": "1.0.2",
"private": true,
"description": "Inject github secret as client ID and public API Keys at build steps",
"scripts": {
"dev": "run-p dev:*",
"dev:build": "esbuild src/main.ts --bundle --watch --platform=node --sourcemap --outfile=dist/index.js",
"dev:test": "jest --watch",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "esbuild src/main.ts --platform=node --minify --bundle --outfile=dist/index.js",
"test": "jest",
"all": "run-s format lint package test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plasmo-corp/gat.git"
},
"keywords": [
"actions",
"templates"
],
"author": "Plasmo Corp. <[email protected]>",
"license": "ISC",
"dependencies": {
"@actions/core": "1.10.0",
"fs-extra": "11.1.0",
"got": "12.5.3"
},
"devDependencies": {
"@jest/globals": "29.3.1",
"@plasmo-corp/rps": "1.3.0",
"@plasmohq/prettier-plugin-sort-imports": "3.6.1",
"@types/fs-extra": "11.0.1",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"esbuild": "0.17.4",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.3.1",
"js-yaml": "4.1.0",
"prettier": "2.8.3",
"ts-jest": "29.0.5",
"typescript": "4.9.4"
}
}