···
1
1
+
node_modules
2
2
+
.output
3
3
+
.nitro
4
4
+
functions
5
5
+
.vercel
···
1
1
+
{
2
2
+
"name": "vuejslive",
3
3
+
"version": "1.0.0",
4
4
+
"private": true,
5
5
+
"scripts": {
6
6
+
"test": "echo \"Error: no test specified\" && exit 1"
7
7
+
},
8
8
+
"author": "Daniel Roe <daniel@roe.dev>",
9
9
+
"dependencies": {
10
10
+
"@picocss/pico": "^1.5.10"
11
11
+
},
12
12
+
"devDependencies": {
13
13
+
"@types/node": "^20.1.3",
14
14
+
"prettier": "^2.8.8"
15
15
+
}
16
16
+
}
···
1
1
+
lockfileVersion: '6.0'
2
2
+
3
3
+
dependencies:
4
4
+
'@picocss/pico':
5
5
+
specifier: ^1.5.10
6
6
+
version: 1.5.10
7
7
+
8
8
+
devDependencies:
9
9
+
'@types/node':
10
10
+
specifier: ^20.1.3
11
11
+
version: 20.1.3
12
12
+
prettier:
13
13
+
specifier: ^2.8.8
14
14
+
version: 2.8.8
15
15
+
16
16
+
packages:
17
17
+
18
18
+
/@picocss/pico@1.5.10:
19
19
+
resolution: {integrity: sha512-+LafMsrwPxXQMk6sI///TmSInCwwZmq+K7SikyL3N/4GhhwzyPC+TQLUEqmrLyjluR+uIpFFcqjty30Rtr6GxQ==}
20
20
+
dev: false
21
21
+
22
22
+
/@types/node@20.1.3:
23
23
+
resolution: {integrity: sha512-NP2yfZpgmf2eDRPmgGq+fjGjSwFgYbihA8/gK+ey23qT9RkxsgNTZvGOEpXgzIGqesTYkElELLgtKoMQTys5vA==}
24
24
+
dev: true
25
25
+
26
26
+
/prettier@2.8.8:
27
27
+
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
28
28
+
engines: {node: '>=10.13.0'}
29
29
+
hasBin: true
30
30
+
dev: true
···
1
1
+
module.exports = {
2
2
+
semi: false,
3
3
+
singleQuote: true,
4
4
+
printWidth: 100,
5
5
+
trailingComma: 'es5',
6
6
+
arrowParens: 'avoid',
7
7
+
}
···
1
1
+
{
2
2
+
"compilerOptions": {
3
3
+
"strict": true,
4
4
+
"allowSyntheticDefaultImports": true,
5
5
+
"forceConsistentCasingInFileNames": true
6
6
+
}
7
7
+
}