ember-service-import-polyfill 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # ember-service-import-polyfill
2
+
3
+ [Short description of the addon.]
4
+
5
+ ## Compatibility
6
+
7
+ - Ember.js v5.8 or above
8
+ - Ember CLI v5.8 or above
9
+ - Node.js v20 or above
10
+
11
+ ## Installation
12
+
13
+ ```
14
+ ember install ember-service-import-polyfill
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ [Longer description of how to use the addon in apps.]
20
+
21
+ ## Contributing
22
+
23
+ See the [Contributing](CONTRIBUTING.md) guide for details.
24
+
25
+ ## License
26
+
27
+ This project is licensed under the [MIT License](LICENSE.md).
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+ name: require('./package').name,
5
+ };
package/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "ember-service-import-polyfill",
3
+ "version": "0.0.0",
4
+ "description": "The default blueprint for ember-cli addons.",
5
+ "keywords": [
6
+ "ember-addon"
7
+ ],
8
+ "repository": "",
9
+ "license": "MIT",
10
+ "author": "",
11
+ "directories": {
12
+ "doc": "doc",
13
+ "test": "tests"
14
+ },
15
+ "dependencies": {
16
+ "@babel/core": "^7.29.7",
17
+ "ember-cli-babel": "^8.3.1",
18
+ "ember-cli-htmlbars": "^7.0.1",
19
+ "ember-template-imports": "^4.4.0"
20
+ },
21
+ "devDependencies": {
22
+ "@babel/eslint-parser": "^7.29.7",
23
+ "@babel/plugin-proposal-decorators": "^7.29.7",
24
+ "@ember/optional-features": "^3.0.0",
25
+ "@ember/test-helpers": "^5.4.3",
26
+ "@embroider/macros": "^1.20.4",
27
+ "@embroider/test-setup": "^4.0.0",
28
+ "@eslint/js": "^9.39.4",
29
+ "@glimmer/component": "^2.1.1",
30
+ "@glimmer/tracking": "^1.1.2",
31
+ "broccoli-asset-rev": "^3.0.0",
32
+ "concurrently": "^9.2.3",
33
+ "ember-auto-import": "^2.13.1",
34
+ "ember-cli": "~7.1.0",
35
+ "ember-cli-clean-css": "^3.0.0",
36
+ "ember-cli-dependency-checker": "^3.4.0",
37
+ "ember-cli-deprecation-workflow": "^4.0.1",
38
+ "ember-cli-inject-live-reload": "^2.1.0",
39
+ "ember-cli-sri": "^2.1.1",
40
+ "ember-cli-terser": "^4.0.2",
41
+ "ember-load-initializers": "^3.0.1",
42
+ "ember-page-title": "^9.0.3",
43
+ "ember-qunit": "^9.1.0",
44
+ "ember-resolver": "^13.2.0",
45
+ "ember-source": "~7.1.0",
46
+ "ember-source-channel-url": "^3.0.0",
47
+ "ember-template-lint": "^6.1.0",
48
+ "ember-try": "^4.0.0",
49
+ "eslint": "^9.39.4",
50
+ "eslint-config-prettier": "^9.1.2",
51
+ "eslint-plugin-ember": "^12.7.5",
52
+ "eslint-plugin-n": "^17.24.0",
53
+ "eslint-plugin-qunit": "^8.2.6",
54
+ "globals": "^15.15.0",
55
+ "loader.js": "^4.7.0",
56
+ "prettier": "^3.8.4",
57
+ "prettier-plugin-ember-template-tag": "^2.1.6",
58
+ "qunit": "^2.26.0",
59
+ "qunit-dom": "^3.5.1",
60
+ "stylelint": "^16.26.1",
61
+ "stylelint-config-standard": "^36.0.1",
62
+ "webpack": "^5.107.2"
63
+ },
64
+ "peerDependencies": {
65
+ "ember-source": ">= 4.0.0"
66
+ },
67
+ "engines": {
68
+ "node": ">= 20.19"
69
+ },
70
+ "ember": {
71
+ "edition": "octane"
72
+ },
73
+ "ember-addon": {
74
+ "configPath": "tests/dummy/config"
75
+ },
76
+ "scripts": {
77
+ "build": "ember build --environment=production",
78
+ "format": "prettier . --cache --write",
79
+ "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
80
+ "lint:css": "stylelint \"**/*.css\"",
81
+ "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
82
+ "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm format",
83
+ "lint:format": "prettier . --cache --check",
84
+ "lint:hbs": "ember-template-lint .",
85
+ "lint:hbs:fix": "ember-template-lint . --fix",
86
+ "lint:js": "eslint . --cache",
87
+ "lint:js:fix": "eslint . --fix",
88
+ "start": "ember serve",
89
+ "test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\" --prefixColors auto",
90
+ "test:ember": "ember test",
91
+ "test:ember-compatibility": "ember try:each"
92
+ }
93
+ }