-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.42 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": "activitysmith-github-action",
"version": "1.2.1",
"description": "The official ActivitySmith GitHub Action. Send push notifications, drive Live Activities, update widget metrics, and set app icon badge counts from workflows.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.js --license licenses.txt --source-map && node tools/normalize-dist.mjs",
"check": "npm test && npm audit --omit=dev && npm run check:dist",
"check:dist": "npm run build && node --check dist/index.js && git diff --exit-code -- dist",
"test": "node --test --test-concurrency=1 test/action.test.js test/metadata.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ActivitySmithHQ/activitysmith-github-action.git"
},
"keywords": [
"activitysmith",
"live-activities",
"push-notifications",
"api",
"sdk",
"deployment",
"publishing",
"monitoring",
"observability",
"logging",
"logs",
"automation",
"tracking",
"reporting"
],
"author": "ActivitySmith",
"license": "MIT",
"bugs": {
"url": "https://github.com/ActivitySmithHQ/activitysmith-github-action/issues"
},
"homepage": "https://activitysmith.com/",
"dependencies": {
"@actions/core": "^3.0.1",
"activitysmith": "^1.10.0",
"flat": "^6.0.1",
"js-yaml": "^4.3.0"
},
"devDependencies": {
"@vercel/ncc": "^0.44.1"
}
}