-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.79 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
{
"name": "@ember-data/adapter",
"version": "5.9.0-alpha.16",
"description": "(Legacy) JSON:API and REST Implementations of the Adapter Interface for use with @ember-data/store",
"keywords": [
"ember-addon"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:warp-drive-data/warp-drive.git",
"directory": "packages/adapter"
},
"license": "MIT",
"author": "",
"directories": {},
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content",
"build:pkg": "vite build",
"prepack": "pnpm run build:pkg",
"sync": "echo \"syncing\"",
"start": "vite"
},
"ember-addon": {
"main": "addon-main.cjs",
"type": "addon",
"version": 2
},
"files": [
"unstable-preview-types",
"blueprints",
"addon-main.cjs",
"dist",
"README.md",
"LICENSE.md",
"logos"
],
"exports": {
".": {
"types": "./unstable-preview-types/index.d.ts",
"default": "./dist/index.js"
},
"./blueprints/*": {
"default": "./blueprints/*.js"
},
"./*": {
"types": "./unstable-preview-types/*.d.ts",
"default": "./dist/*.js"
}
},
"peerDependencies": {},
"dependencies": {
"@embroider/macros": "^1.19.6",
"ember-cli-test-info": "^1.0.0",
"ember-cli-string-utils": "^1.1.0",
"ember-cli-path-utils": "^1.0.0",
"@ember/edition-utils": "1.2.0",
"@warp-drive/core": "workspace:*",
"@warp-drive/legacy": "workspace:*",
"@warp-drive/utilities": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-transform-typescript": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@warp-drive/internal-config": "workspace:*",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"volta": {
"extends": "../../package.json"
}
}