-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"author": "Stratienko <[email protected]>",
"devDependencies": {
"@types/i18next": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"esbuild": "^0.16.12",
"esbuild-node-externals": "^1.6.0",
"eslint": "^8.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"pocketbase": "^0.9.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18.12.1",
"yarn": ">=1.22.10"
},
"files": [
"lib"
],
"license": "MIT",
"main": "lib/index.js",
"name": "pocketbase-i18n-backend",
"peerDependencies": {
"pocketbase": "^0.9.1"
},
"private": true,
"repository": "[email protected]:blenderbox/pocketbase-i18n-backend.git",
"scripts": {
"build": "rimraf lib && node ./esbuild.js && npm run ts-types",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint:fix": "yarn lint --fix",
"prepare": "yarn build",
"ts-types": " tsc --emitDeclarationOnly --outDir lib"
},
"type": "module",
"types": "lib/index.d.ts",
"version": "0.0.0"
}