-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.96 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "vue-screenfull",
"version": "1.0.6",
"description": "Reactive, strongly typed, SSR-safe fullscreen utilities for Vue 3.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs.js",
"default": "./lib/index.mjs"
},
"./lib/index.cjs.js": "./lib/index.cjs.js",
"./lib/index.esm.js": "./lib/index.esm.js",
"./lib/vue-screenfull.min.js": "./lib/vue-screenfull.min.js",
"./package.json": "./package.json"
},
"sideEffects": false,
"unpkg": "lib/vue-screenfull.min.js",
"jsdelivr": "lib/vue-screenfull.min.js",
"files": [
"lib",
"README.md",
"MANUAL_TESTING.md",
"LICENSE"
],
"scripts": {
"dev": "webpack serve --config ./scripts/webpack.config.dev.js",
"build": "cross-env SCRIPTS_NPM_PACKAGE_DEBUG=close SCRIPTS_NPM_PACKAGE_VERSION=$npm_package_version rollup --config ./scripts/rollup.config.mjs",
"build:debug": "cross-env SCRIPTS_NPM_PACKAGE_DEBUG=open SCRIPTS_NPM_PACKAGE_VERSION=$npm_package_version rollup --config ./scripts/rollup.config.mjs",
"build:dev": "webpack --config ./scripts/webpack.config.dev.js",
"build:playground": "cross-env GITHUB_PAGES=true webpack --mode production --config ./scripts/webpack.config.dev.js",
"test": "jest",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"docs": "typedoc --out ./docs/api --readme ./README.md --excludeProtected --excludePrivate --excludeInternal --hideGenerator && npm run build:playground && node scripts/build-pages.js && npm run seo:validate && npm run pwa:validate",
"seo:validate": "node scripts/validate-seo.js",
"pwa:validate": "node scripts/validate-pwa.js",
"lint": "eslint ./examples ./scripts ./site ./src ./test ./types",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "npm run typecheck && npm run lint && npm run build && npm run test",
"release": "npm run preview && npm publish",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chengchuu/vue-screenfull.git"
},
"keywords": [
"vue",
"vue3",
"fullscreen",
"screenfull",
"composition-api",
"typescript",
"rollup",
"webpack",
"jest",
"typedoc"
],
"author": {
"name": "Cheng",
"email": "mazeyqian@gmail.com",
"url": "https://github.com/chengchuu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chengchuu/vue-screenfull/issues"
},
"homepage": "https://chengchuu.github.io/vue-screenfull/",
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^7.1.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"cross-env": "^10.1.0",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"html-webpack-plugin": "^5.6.7",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"rollup": "^4.62.2",
"rollup-plugin-dts": "^6.4.1",
"ts-loader": "^9.6.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.20",
"typescript": "6.0.3",
"typescript-eslint": "^8.63.0",
"vue": "^3.5.24",
"webpack": "^5.108.4",
"webpack-cli": "^7.2.1",
"webpack-dev-server": "^6.0.0",
"workbox-build": "^7.4.1",
"workbox-cacheable-response": "^7.4.1",
"workbox-core": "^7.4.1",
"workbox-expiration": "^7.4.1",
"workbox-navigation-preload": "^7.4.1",
"workbox-precaching": "^7.4.1",
"workbox-routing": "^7.4.1",
"workbox-strategies": "^7.4.1",
"workbox-window": "^7.4.1"
},
"peerDependencies": {
"vue": "^3.3.0"
}
}