-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "plasmic-action",
"version": "0.0.0",
"private": true,
"description": "Plasmic Sync and Build Action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"all": "yarn install && npm run build && npm run format",
"add-dist": "git add lib"
},
"pre-commit": [
"format-check",
"all",
"add-dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/plasmicapp/plasmic-action.git"
},
"keywords": [
"actions",
"node",
"plasmic"
],
"author": "Plasmic <ops@plasmic.app>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^5.0.0",
"@sentry/node": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"create-plasmic-app": "^0.0.95",
"nanoid": "^3.1.22",
"semver": "^7.4.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/semver": "^7.3.13",
"@vercel/ncc": "^0.27.0",
"js-yaml": "^4.0.0",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"typescript": "^4.2.3"
}
}