-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.63 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
58
59
60
61
62
63
{
"name": "@plutotcool/vue-freecaster",
"description": "Freecaster video player integration for vue",
"keywords": [
"vue",
"freecaster",
"video",
"player"
],
"repository": "plutotcool/vue-freecaster",
"homepage": "https://github.com/plutotcool/vue-freecaster#readme",
"bugs": "https://github.com/plutotcool/vue-freecaster/issues",
"author": "Julien Dargelos <julien@plutot.cool>",
"version": "1.4.4",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite --config vite.playground.config.ts",
"build": "vite build",
"preview": "vite preview",
"release": "changelogen --release --push --publish",
"doc": "typedoc",
"doc:serve": "typedoc --watch & serve doc",
"predoc": "vite build",
"postdoc": "vite build --config vite.playground.config.ts"
},
"peerDependencies": {
"vue": "^3.5.12"
},
"devDependencies": {
"@types/node": "^22.9.1",
"@vitejs/plugin-vue": "^5.1.4",
"changelogen": "^0.5.7",
"serve": "^14.2.4",
"typedoc": "^0.26.11",
"typedoc-github-theme": "^0.1.2",
"typedoc-plugin-vue": "^1.3.0",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.12",
"vue-tsc": "^2.1.8"
},
"packageManager": "pnpm@9.0.0",
"publishConfig": {
"access": "public"
}
}