-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
{
"name": "device-rotation-prompt",
"version": "4.0.0",
"description": "The device rotation prompt is the library to show a fullscreen prompt message when device orientation is different than you expect.",
"keywords": [
"device",
"rotation",
"prompt",
"rotate device",
"device rotation prompt"
],
"homepage": "https://device-rotation-prompt.netlify.app/",
"author": "Raiper34",
"license": "MIT",
"type": "module",
"main": "./dist/device-rotation-prompt.umd.cjs",
"module": "./dist/device-rotation-prompt.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/device-rotation-prompt.js",
"require": "./dist/device-rotation-prompt.umd.cjs"
}
},
"files": [
"src",
"dist",
"test",
"CHANGELOG.md",
".nvmrc"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest run --coverage",
"test:dev": "vitest --ui --coverage",
"test:ci": "npm run test",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"docs": "typedoc src/index.ts",
"deploy": "npm run docs && netlify deploy --dir=docs --prod",
"release": "release-it",
"changelog": "auto-changelog -p",
"commit": "cz",
"serve": "serve . -p 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Raiper34/device-rotation-prompt.git"
},
"bugs": {
"url": "https://github.com/Raiper34/device-rotation-prompt/issues"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@release-it/bumper": "^7.0.1",
"@types/eslint__js": "^8.42.3",
"@vitest/coverage-v8": "^3.0.2",
"@vitest/ui": "^3.0.2",
"auto-changelog": "^2.5.0",
"commitizen": "^4.3.1",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.20.1",
"netlify-cli": "^17.37.1",
"release-it": "^18.1.2",
"serve": "^14.2.4",
"typedoc": "^0.27.6",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.2"
}
}