-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@tarrasque/sdk",
"version": "0.0.8",
"description": "Plugin SDK for Tarrasque App",
"keywords": [
"tarrasque",
"sdk",
"plugin"
],
"homepage": "https://github.com/tarrasqueapp/sdk#readme",
"bugs": {
"url": "https://github.com/tarrasqueapp/sdk/issues",
"email": "[email protected]"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Richard Solomou",
"email": "[email protected]",
"url": "https://tarrasque.app"
},
"repository": {
"type": "git",
"url": "https://github.com/tarrasqueapp/sdk"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "pnpm build --watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "tsc --noEmit && eslint .",
"prepare": "husky install",
"release": "release-it"
},
"dependencies": {
"consola": "^3.2.3",
"emittery": "^1.0.3"
},
"devDependencies": {
"@swc/core": "^1.4.6",
"@tronite/style-guide": "^0.0.11",
"@types/node": "^20.11.26",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"release-it": "^17.1.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"release-it": {
"git": {
"requireBranch": "main",
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true,
"releaseName": "${version}"
},
"hooks": {
"before:init": [
"git pull",
"pnpm lint",
"pnpm format"
],
"after:bump": "pnpm build"
}
}
}