-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.57 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@vizejs/fresco",
"version": "0.287.0",
"description": "Vue TUI framework - Build terminal UIs with Vue.js",
"keywords": [
"cli",
"fresco",
"ink",
"terminal",
"tui",
"vize",
"vue"
],
"homepage": "https://github.com/ubugeeei-prod/vize",
"bugs": {
"url": "https://github.com/ubugeeei-prod/vize/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ubugeeei-prod/vize",
"directory": "npm/fresco"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./components": {
"import": "./dist/components/index.mjs",
"types": "./dist/components/index.d.mts"
},
"./composables": {
"import": "./dist/composables/index.mjs",
"types": "./dist/composables/index.d.mts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"check": "vp check src vite.config.ts",
"check:fix": "vp check --fix src vite.config.ts",
"fmt": "vp fmt --write src vite.config.ts"
},
"dependencies": {
"@vizejs/fresco-native": "workspace:*"
},
"devDependencies": {
"@types/node": "catalog:typescript",
"@vue/runtime-core": "catalog:vue-stable",
"typescript": "catalog:typescript",
"vite-plus": "catalog:vite-stack"
},
"peerDependencies": {
"@vue/runtime-core": "^3.4.0"
},
"engines": {
"node": ">=22"
}
}