-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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-vite-serverside",
"author": "Chris King",
"version": "0.1.1",
"license": "MIT",
"main": "./lib/esm/index.mjs",
"types": "./lib/esm/types/index.d.ts",
"type": "module",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Morzaram/pocketbase-vite-serverside"
},
"engines": {
"node": ">=15"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build"
},
"dependencies": {
"pocketbase": "^0.10.1",
"vite": "^4.1.1"
},
"peerDependencies": {},
"devDependencies": {
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"keywords": [
"vite",
"astro",
"pocketbase",
"auth"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
}
}
}
}