generated from egoist/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "esbuild-plugin-vue",
"version": "0.1.0",
"description": "Basic .vue support for esbuild",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --target node16 --format cjs,esm --dts-resolve --external @vue/compiler-sfc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@egoist/prettier-config": "^0.1.0",
"@sucrase/jest-plugin": "^2.2.0",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^27.0.3",
"@vue/compiler-sfc": "^3.2.26",
"esbuild": "^0.14.8",
"jest": "^27.4.5",
"prettier": "^2.2.1",
"stylus": "^0.54.8",
"tsup": "^5.11.9",
"typescript": "^4.2.3",
"vue": "^3.2.26"
},
"dependencies": {
"hash-sum": "^2.0.0",
"resolve-from": "^5.0.0"
},
"peerDependencies": {
"esbuild": ">=0.11 <=1"
}
}