forked from triggerdotdev/trigger.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 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
49
50
51
52
53
{
"name": "@systemfsoftware/trigger.dev_astro",
"description": "An Astro-native integration for Trigger.dev background jobs platform",
"version": "2.3.19-beta.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:tsup",
"build:tsup": "tsup"
},
"peerDependencies": {
"@systemfsoftware/trigger.dev_sdk": "workspace:^2.3.19-beta.0"
},
"devDependencies": {
"astro": "^4.16.18",
"@systemfsoftware/trigger.dev_tsconfig": "workspace:*",
"@types/debug": "^4.1.7",
"@types/ws": "^8.5.3",
"rimraf": "^3.0.2",
"tsup": "8.0.1",
"tsx": "^3.12.1",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/triggerdev/trigger.dev.git"
},
"bugs": {
"url": "https://github.com/triggerdev/trigger.dev/issues"
},
"homepage": "https://github.com/triggerdev/trigger.dev#readme",
"dependencies": {
"debug": "^4.3.4"
}
}