forked from preactjs/preset-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.15 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
{
"name": "@preact/preset-vite",
"version": "2.0.1",
"description": "Preact preset for the vite bundler",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "vite demo",
"build": "rimraf dist/ && tsc && tsc -p tsconfig.esm.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"preact",
"vite",
"vite-preset",
"preset"
],
"author": "The Preact Team (https://preactjs.com)",
"repository": "preactjs/preset-vite",
"license": "MIT",
"files": [
"dist/"
],
"dependencies": {
"@prefresh/vite": "^2.1.0",
"debug": "^4.3.1",
"kolorist": "^1.2.10"
},
"peerDependencies": {
"vite": "2.x"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.14.33",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"vite": "^2.0.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,yml}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"prettier": {
"useTabs": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
}