forked from browser-actions/release-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 785 Bytes
/
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
{
"name": "release-chrome-extension",
"version": "1.0.7-0",
"description": "Publish a chrome extension in the Chrome Web Store ",
"main": "dist/index.js",
"type": "module",
"repository": "git@github.com:browser-actions/release-chrome-extension.git",
"author": "Shin'ya Ueoka <ueokande@i-beam.org>",
"license": "MIT",
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --fix --unsafe",
"package": "ncc build src/index.ts && cp action.yml README.md dist/"
},
"dependencies": {
"@actions/core": "1.11.1",
"@vercel/ncc": "0.38.3",
"googleapis": "144.0.0",
"typescript": "5.7.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.10",
"open": "10.1.0"
},
"packageManager": "yarn@4.6.0"
}