forked from Akryum/meteor-vite
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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": "@meteor-vite/plugin-zodern-relay",
"version": "1.1.0",
"description": "Vite compatability plugin for zodern:relay - typed Meteor methods and publications",
"main": "dist/Plugin.js",
"exports": {
".": {
"types": "./dist/Plugin.d.ts",
"require": "./dist/Plugin.js",
"import": "./dist/Plugin.mjs"
},
"./stubs/*": [
"./stubs/*.js"
]
},
"files": [
"dist",
"src",
"stubs"
],
"scripts": {
"lint": "tsc --noEmit",
"test": "npm run lint",
"build": "tsup",
"prepack": "npm run build",
"prepare": "npm run build || echo 'Warning: Failed to prepare package!' && exit 0"
},
"keywords": [
"meteor-vite",
"meteor",
"zodern:relay",
"vite",
"typescript"
],
"publishConfig": {
"access": "public"
},
"author": "Jørgen Vatle <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/JorgenVatle/meteor-vite"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@types/babel__core": "^7.20.5",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^6.2.5"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
}