-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 897 Bytes
/
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
{
"name": "@nedpals/pbf",
"version": "1.3.2",
"description": "Library for serializing and deserializing Pocketbase filter syntax",
"files": ["dist/*"],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"prepublishOnly": "npm run build",
"build": "node build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nedpals/pbf.git"
},
"keywords": [
"pocketbase",
"filters",
"serialize",
"deserialize"
],
"author": "Ned Palacios",
"license": "MIT",
"bugs": {
"url": "https://github.com/nedpals/pbf/issues"
},
"homepage": "https://github.com/nedpals/pbf#readme",
"devDependencies": {
"esbuild": "0.19.5",
"npm-dts": "^1.3.12",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"publishConfig": {
"access": "public"
}
}