-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.97 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
{
"name": "vite-module-builder-w-ghpages-npm-template",
"version": "1.0.0",
"description": "This is a templare repo that will create a Vite workflow to ease creation of Javascript modules with a dev server, GitHub Pages support and automated publishing to NPM.",
"files": [
"dist"
],
"main": "./dist/vite-module-builder-w-ghpages-npm-template.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/johnfmorton/vite-module-builder-w-ghpages-npm-template"
},
"module": "./dist/vite-module-builder-w-ghpages-npm-template.es.js",
"unpkg": "./dist/vite-module-builder-w-ghpages-npm-template.es.js",
"types": "./dist/vite-module-builder-w-ghpages-npm-template.d.ts",
"exports": {
".": {
"import": "./dist/vite-module-builder-w-ghpages-npm-template.es.js",
"require": "./dist/vite-module-builder-w-ghpages-npm-template.umd.js"
}
},
"scripts": {
"clean": "rm -rf dist es demo",
"dev": "vite --host 0.0.0.0 --port 8888",
"vite-build": "vite build --config vite.demo.config.js",
"build": "vite build --config vite.demo.config.js && vite build && tsc lib/vite-module-builder-w-ghpages-npm-template.ts --declaration --emitDeclarationOnly --outFile dist/vite-module-builder-w-ghpages-npm-template.d.ts",
"preview": "vite preview",
"project-setup": "node project-setup.js && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"workflow",
"vite",
"typescript",
"npm",
"github",
"github-pages",
"npm-publish"
],
"author": "John F. Morton <[email protected]> (https://supergeekery.com)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.3",
"vite-plugin-banner": "^0.7.0"
}
}