-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
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": "esbuild src/main.ts --bundle --minify --platform=node --target=node24 --outfile=lib/index.js",
"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": "^3.0.0",
"@actions/github": "^9.0.0",
"@sentry/node": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"create-plasmic-app": "^0.0.98",
"nanoid": "^3.1.22",
"semver": "^7.4.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/semver": "^7.3.13",
"esbuild": "^0.25.0",
"js-yaml": "^4.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
}
}