forked from swordev/suid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "@suid/vite-plugin",
"version": "0.1.2",
"description": "SUID integration plugin for Vite.",
"keywords": [
"vite",
"plugin",
"suid",
"solidjs"
],
"type": "module",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"types": "./index.d.ts"
}
},
"scripts": {
"build": "pnpm build:types && pnpm build:cjs && pnpm build:esm",
"build:cjs": "esbuild --format=cjs --outfile=dist/index.cjs src/index.ts",
"build:esm": "esbuild --format=esm --outfile=dist/index.mjs src/index.ts",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --declarationMap false --outdir dist --declaration"
},
"dependencies": {
"@babel/generator": "^7.20.7",
"@babel/parser": "^7.20.7",
"@babel/traverse": "^7.20.12",
"@babel/types": "^7.20.7",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.18.3"
},
"devDependencies": {
"esbuild": "^0.16.14",
"vite": "^4.0.4"
},
"peerDependencies": {
"vite": "^4.0.0"
},
"publishConfig": {
"directory": "dist"
},
"x-wspa": {
"pkgManifest": {
"files": [
"**/*.cjs",
"**/*.mjs",
"**/*.d.ts"
]
}
}
}