-
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 4.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
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
{
"name": "ngx-device-detector-ws",
"version": "12.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:lib": "ng build ngx-device-detector --configuration production",
"build:demo": "ng build demo --configuration production",
"build:ci": "ng build demo --base-href https://ahsanayaz.github.io/ngx-device-detector/demo/ --configuration production --output-hashing=all",
"docs": "npm run docs:build",
"docs:build": "compodoc -p --tsconfig ./tsconfig.json -n ngx-device-detector -d docs --hideGenerator --theme Vagrant",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"format:check:demo": "prettier --config ./.prettierrc --check \"projects/demo/**/*{.ts,.js,.html,.scss}\"",
"format:check:lib": "prettier --config ./.prettierrc --check \"projects/ngx-device-detector/**/*{.ts,.js,.html,.scss}\"",
"format:fix:demo": "prettier --config ./.prettierrc --write \"projects/demo/**/*{.ts,.js,.html,.scss}\"",
"format:fix:lib": "prettier --config ./.prettierrc --write \"projects/ngx-device-detector/**/*{.ts,.js,.html,.scss}\"",
"format:check:all": "prettier --config ./.prettierrc --check \"projects/**/*{.ts,.js,.html,.scss}\"",
"format:fix:all": "prettier --config ./.prettierrc --write \"projects/**/*{.ts,.js,.html,.scss}\"",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"test": "ng test ngx-device-detector --watch=false",
"copy:readme": "cp README.md ./projects/ngx-device-detector",
"changelog": "conventional-changelog -p angular -i CHANGE_LOG.md -s",
"copy:changelog": "cp CHANGE_LOG.md ./dist/ngx-device-detector",
"prerelease": "npm run changelog && npm run format:fix:lib && npm run copy:readme && npm run build:lib && npm run docs:build && npm run copy:changelog",
"release": "cd dist/ngx-device-detector && npm publish && cd ../../",
"deploy:ssr:demo": "sh scripts/deploy_ssr_demo.sh",
"postversion": "node scripts/post-version",
"bump:version": "node scripts/bump-version",
"serve:ssr:demo": "node dist/demo/server/server.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/AhsanAyaz/ngx-device-detector.git"
},
"author": {
"name": "Muhammad Ahsan Ayaz",
"email": "ahsan.ubitian@gmail.com"
},
"keywords": [
"angular",
"device",
"device detector",
"device detection",
"ngx-device-detector",
"angular device detector",
"angular5",
"angular6",
"angular7",
"angular8",
"angular18",
"angular19",
"angular20",
"angular21",
"angular22"
],
"bugs": {
"url": "https://github.com/AhsanAyaz/ngx-device-detector.git/issues"
},
"dependencies": {
"@angular/animations": "^22.0.0",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/platform-browser-dynamic": "^22.0.0",
"@angular/platform-server": "^22.0.0",
"@angular/router": "^22.0.0",
"@angular/ssr": "^22.0.0",
"@eslint/js": "^10.0.1",
"conventional-changelog-cli": "^5.0.0",
"express": "^5.1.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-angular": "^21.0.2",
"@compodoc/compodoc": "^1.2.1",
"@types/express": "^5.0.5",
"@types/node": "^25.9.2",
"angular-eslint": "22.0.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"ng-packagr": "^22.0.0",
"prettier": "^3.8.3",
"semver": "^7.8.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"overrides": {
"ngx-device-detector": {
"@angular/core": "$@angular/core",
"@angular/common": "$@angular/common"
}
}
}