-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.38 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.38 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
119
120
{
"name": "ember-page-title",
"version": "8.2.3",
"description": "Page Titles for Ember applications",
"keywords": [
"ember-addon",
"page title",
"title",
"component",
"fastboot"
],
"license": "MIT",
"author": "Tim Evans <[email protected]>",
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
},
"./_app_/*": {
"default": "./dist/_app_/*"
},
"./services/page-title": {
"types": "./declarations/services/page-title.d.ts",
"default": "./dist/services/page-title.js"
},
"./helpers/page-title": {
"types": "./declarations/helpers/page-title.d.ts",
"default": "./dist/helpers/page-title.js"
},
"./test-support": {
"types": "./declarations/test-support/index.d.ts",
"default": "./dist/test-support/index.js"
},
"./template-registry": {
"types": "./declarations/template-registry.d.ts"
},
"./service-registry": {
"types": "./declarations/service-registry.d.ts"
},
"./addon-main.js": "./addon-main.js"
},
"typesVersions": {
"*": {
"*": [
"./declarations/*.d.ts"
]
}
},
"files": [
"addon-main.js",
"dist",
"declarations"
],
"repository": "https://github.com/ember-cli/ember-page-title",
"scripts": {
"build": "rollup --config",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "glint --declaration",
"prepack": "rollup --config",
"start": "rollup --config --watch --no-watch.clearScreen"
},
"dependencies": {
"@embroider/addon-shim": "^1.8.7",
"@simple-dom/document": "^1.4.0"
},
"peerDependencies": {
"ember-source": ">= 3.28.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.6",
"@embroider/addon-dev": "^4.1.3",
"@glint/core": "^1.2.1",
"@glint/environment-ember-loose": "^1.2.1",
"@glint/environment-ember-template-imports": "^1.2.1",
"@glint/template": "^1.2.1",
"@rollup/plugin-babel": "^6.0.4",
"@tsconfig/ember": "^3.0.3",
"@types/rsvp": "^4.0.8",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"concurrently": "^8.2.2",
"ember-source": "^5.5.0",
"ember-template-lint": "^5.13.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ember": "^11.12.0",
"eslint-plugin-jsonc": "^2.11.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"execa": "^8.0.1",
"fix-bad-declaration-output": "^1.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rollup": "^4.22.4",
"typescript": "^5.3.3"
},
"engines": {
"node": "16.* || >= 18"
},
"ember-addon": {
"demoURL": "https://ember-cli.github.io/ember-page-title",
"main": "addon-main.js",
"type": "addon",
"version": 2,
"app-js": {
"./helpers/page-title.js": "./dist/_app_/helpers/page-title.js",
"./services/page-title.js": "./dist/_app_/services/page-title.js"
}
},
"homepage": "https://ember-cli.github.io/ember-page-title",
"volta": {
"extends": "../package.json"
}
}