UNPKG

1.71 kBJSONView Raw
1{
2 "name": "microsite",
3 "version": "0.2.0",
4 "type": "module",
5 "author": {
6 "name": "Nate Moore",
7 "email": "nate@natemoo.re",
8 "url": "https://natemoo.re"
9 },
10 "license": "MIT",
11 "main": "./index.js",
12 "bin": "./index.js",
13 "types": "./index.d.ts",
14 "scripts": {
15 "prepare": "npm run build",
16 "build": "tsc -p ."
17 },
18 "files": [
19 "**/*.js",
20 "**/*.d.ts"
21 ],
22 "dependencies": {
23 "@rollup/plugin-alias": "^3.1.1",
24 "@rollup/plugin-commonjs": "^16.0.0",
25 "@rollup/plugin-inject": "^4.0.2",
26 "@rollup/plugin-node-resolve": "^9.0.0",
27 "@rollup/plugin-replace": "^2.3.4",
28 "@rollup/plugin-strip": "^2.0.0",
29 "@rollup/plugin-typescript": "^6.0.0",
30 "@types/react": "^16.9.53",
31 "@types/react-dom": "^16.9.8",
32 "estree-walker": "2.0.1",
33 "globby": "^11.0.1",
34 "node-fetch": "^2.6.1",
35 "postcss": "^8.1.2",
36 "preact": "^10.5.5",
37 "preact-render-to-string": "5.1.11",
38 "rollup": "^2.32.1",
39 "rollup-plugin-multi-input": "1.1.1",
40 "rollup-plugin-styles": "^3.11.0",
41 "rollup-plugin-terser": "^7.0.2"
42 },
43 "devDependencies": {
44 "@types/node": "^14.14.2",
45 "husky": "^4.3.0",
46 "lint-staged": "^10.4.2",
47 "lodash": "^4.17.20",
48 "prettier": "^2.1.2",
49 "typescript": "^4.1.0-beta"
50 },
51 "repository": {
52 "type": "git",
53 "url": "https://github.com/natemoo-re/microsite.git"
54 },
55 "bugs": {
56 "url": "https://github.com/natemoo-re/microsite/issues"
57 },
58 "homepage": "https://github.com/natemoo-re/microsite#readme",
59 "volta": {
60 "node": "14.15.0"
61 },
62 "husky": {
63 "hooks": {
64 "pre-commit": "lint-staged"
65 }
66 },
67 "lint-staged": {
68 "*.{ts,tsx,css,md,json}": "prettier --write"
69 }
70}