-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
54
55
56
57
58
{
"name": "vite-plugin-generate-exports",
"description": "Generate Exports at Build Time",
"version": "0.0.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Jacob Clevenger <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jacobclevenger/vite-plugin-generate-exports"
},
"homepage": "https://github.com/jacobclevenger/vite-plugin-generate-exports",
"bugs": "https://github.com/jacobclevenger/vite-plugin-generate-exports/issues",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"example:dev": "npm -C examples/spa run dev",
"example:build": "npm -C examples/spa run build",
"example:serve": "npm -C examples/spa run serve"
},
"dependencies": {
"@vue/compiler-sfc": "^3.0.5",
"chalk": "^4.1.0",
"debug": "^4.3.2",
"deep-equal": "^2.0.5"
},
"peerDependencies": {
"vite": "^2.0.0-beta.64",
"vue": "^3.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.4.3",
"@babel/generator": "^7.13.0",
"@babel/parser": "^7.13.4",
"@types/babel-generator": "^6.25.3",
"@types/debug": "^4.1.5",
"@types/deep-equal": "^1.0.1",
"@types/glob-to-regexp": "^0.4.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@vue/shared": "^3.0.5",
"eslint": "^7.20.0",
"fast-glob": "^3.2.5",
"graphql": "^15.5.0",
"rollup": "^2.39.1",
"tsup": "^3.12.1",
"typescript": "^4.1.5",
"vite": "^2.0.2",
"vue": "^3.0.5"
}
}