-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "snapit",
"private": true,
"version": "0.0.13",
"description": "Create a snapshot NPM release with `/snapit` comment in a PR",
"type": "module",
"scripts": {
"build": "ncc build index.ts --minify --license LICENSE",
"watch": "ncc build index.ts --watch --minify",
"lint": "prettier --check . !dist/index.js",
"format": "prettier '.' !dist/index.js --write"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@manypkg/get-packages": "^2.2.1"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@vercel/ncc": "^0.38.1",
"prettier": "^3.1.0",
"typescript": "^5.3.3"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/snapit.git"
},
"keywords": [
"actions",
"changesets",
"snapshot",
"snapit"
],
"author": "Shopify",
"license": "MIT",
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "all"
}
}