-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 835 Bytes
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
{
"name": "vnt",
"version": "1.0.1",
"main": "src/index.ts",
"description": "Vue Native Toolkit",
"directories": {
"lib":"src/lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mirkobrombin/vnt"
},
"keywords": [
"vuejs",
"toolkit",
"native"
],
"author": "Mirko Brombin",
"license": "GPL-3.0-or-later",
"peerDependencies": {
"mitt": "^3.0.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@vue/runtime-core": "^3.4.21",
"sass": "^1.74.1",
"sass-loader": "^14.1.1",
"typescript": "^5.0.2"
},
"files": [
"src"
],
"exports": {
".": "./src/index.ts",
"./lib/*": "./src/lib/*",
"./style/*": "./src/style/*",
"./widgets/*": "./src/widgets/*"
}
}