-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
50
51
52
53
{
"name": "sandman-scripts",
"version": "0.1.0",
"description": "A collection of scripts for use with Sandman",
"keywords": [
"webhooks",
"sandman"
],
"license": "MIT",
"author": "Daniel Sieradski <[email protected]>",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"node-gyp": "^11.0.0",
"pocketbase": "^0.25.1",
"puppeteer": "^24.2.0",
"radashi": "^12.3.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^4.3.0",
"prettier-plugin-organize-attributes": "^1.0.0",
"tslib": "^2.8.1",
"tsup": "^8.3.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"tsup": {
"cjsInterop": true,
"clean": true,
"dts": false,
"entry": [
"src/*.ts"
],
"format": [
"esm"
],
"minify": true,
"sourcemap": "inline",
"splitting": false
},
"engines": {
"node": ">=20.6.0"
}
}