@ember-data/legacy-compat 4.12.0-alpha.9

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/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@ember-data/legacy-compat",
3
+ "description": "Compatibility Shims for Older EmberData",
4
+ "version": "4.12.0-alpha.9",
5
+ "license": "MIT",
6
+ "author": "Chris Thoburn <runspired@users.noreply.github.com>",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+ssh://git@github.com:emberjs/data.git",
10
+ "directory": "packages/legacy-compat"
11
+ },
12
+ "homepage": "https://github.com/emberjs/data",
13
+ "bugs": "https://github.com/emberjs/data/issues",
14
+ "engines": {
15
+ "node": "14.* || 16.* || >= 18"
16
+ },
17
+ "keywords": [
18
+ "ember-addon"
19
+ ],
20
+ "volta": {
21
+ "extends": "../../package.json"
22
+ },
23
+ "dependencies": {
24
+ "ember-cli-babel": "^7.26.11",
25
+ "@ember-data/private-build-infra": "4.12.0-alpha.9",
26
+ "@embroider/macros": "^1.10.0"
27
+ },
28
+ "files": [
29
+ "addon-main.js",
30
+ "addon"
31
+ ],
32
+ "ember-addon": {
33
+ "main": "addon-main.js",
34
+ "type": "addon",
35
+ "version": 1
36
+ },
37
+ "dependenciesMeta": {
38
+ "@ember-data/private-build-infra": {
39
+ "injected": true
40
+ }
41
+ },
42
+ "peerDependencies": {},
43
+ "devDependencies": {
44
+ "@embroider/addon-dev": "^3.0.0",
45
+ "rollup": "^3.19.1",
46
+ "@babel/core": "^7.21.0",
47
+ "@babel/cli": "^7.21.0",
48
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
49
+ "@babel/plugin-proposal-decorators": "^7.21.0",
50
+ "@babel/plugin-proposal-private-methods": "^7.18.6",
51
+ "@babel/plugin-transform-typescript": "^7.21.0",
52
+ "@babel/plugin-transform-runtime": "^7.21.0",
53
+ "@babel/preset-typescript": "^7.21.0",
54
+ "@babel/preset-env": "^7.20.2",
55
+ "@babel/runtime": "^7.21.0",
56
+ "@rollup/plugin-babel": "^6.0.3",
57
+ "@rollup/plugin-node-resolve": "^15.0.1",
58
+ "tslib": "^2.5.0",
59
+ "walk-sync": "^3.0.0",
60
+ "typescript": "^4.9.5"
61
+ },
62
+ "ember": {
63
+ "edition": "octane"
64
+ },
65
+ "scripts": {
66
+ "build": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
67
+ "start": "rollup --config --watch"
68
+ }
69
+ }