-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.08 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
49
{
"name": "pocketbase-queue",
"version": "0.0.5",
"description": "A type-safe queue for background tasks on top of PocketBase.",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.mjs",
"./cjs": "./dist/index.js"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"keyword": [
"pocketbase",
"queue",
"background",
"task"
],
"prettier": {
"singleQuote": false,
"trailingComma": "es5",
"printWidth": 100,
"tabWidth": 2
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json --noEmit && tsup",
"dev": "tsx --watch test.ts",
"format": "prettier --write --ignore-unknown .",
"changeset": "changeset",
"publish-packages": "changeset version && changeset publish"
},
"author": "Josef Erben",
"license": "MIT",
"peerDependencies": {
"pocketbase": "^0.21.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
}
}