Skip to content

Commit dc4966d

Browse files
committed
WIP: initial commit
0 parents  commit dc4966d

26 files changed

Lines changed: 5668 additions & 0 deletions

.browserslistrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 1%
2+
last 2 versions
3+
not dead
4+
not ie 11

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true,
5+
},
6+
extends: [
7+
'plugin:vue/vue3-essential',
8+
'eslint:recommended',
9+
'@vue/eslint-config-typescript',
10+
],
11+
rules: {
12+
'vue/multi-word-component-names': 'off',
13+
},
14+
}

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
# Editor directories and files
16+
.idea
17+
.vscode
18+
*.suo
19+
*.ntvs*
20+
*.njsproj
21+
*.sln
22+
*.sw?

README.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# base
2+
3+
## Project setup
4+
5+
```
6+
# yarn
7+
yarn
8+
9+
# npm
10+
npm install
11+
12+
# pnpm
13+
pnpm install
14+
```
15+
16+
### Compiles and hot-reloads for development
17+
18+
```
19+
# yarn
20+
yarn dev
21+
22+
# npm
23+
npm run dev
24+
25+
# pnpm
26+
pnpm dev
27+
```
28+
29+
### Compiles and minifies for production
30+
31+
```
32+
# yarn
33+
yarn build
34+
35+
# npm
36+
npm run build
37+
38+
# pnpm
39+
pnpm build
40+
```
41+
42+
### Lints and fixes files
43+
44+
```
45+
# yarn
46+
yarn lint
47+
48+
# npm
49+
npm run lint
50+
51+
# pnpm
52+
pnpm lint
53+
```
54+
55+
### Customize configuration
56+
57+
See [Configuration Reference](https://vitejs.dev/config/).

index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" href="/favicon.ico" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>Scapy</title>
9+
</head>
10+
11+
<body>
12+
<div id="app"></div>
13+
<script type="module" src="/src/main.ts"></script>
14+
</body>
15+
16+
</html>

0 commit comments

Comments
 (0)