-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "@ember-data/adapter",
"version": "5.9.0-alpha.25",
"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": {
"check:types": "node ./node_modules/typescript-7/bin/tsc --noEmit",
"build:pkg": "node node_modules/tsdown/dist/run.mjs",
"prepack": "pnpm run build:pkg",
"sync": "echo \"syncing\"",
"start": "node node_modules/tsdown/dist/run.mjs --watch"
},
"ember-addon": {
"main": "addon-main.cjs",
"type": "addon",
"version": 2
},
"files": [
"blueprints",
"addon-main.cjs",
"dist",
"README.md",
"LICENSE.md",
"logos"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./blueprints/*": {
"default": "./blueprints/*.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"dependencies": {
"@embroider/macros": "^1.20.6",
"@warp-drive/core": "workspace:*",
"@warp-drive/legacy": "workspace:*",
"@warp-drive/utilities": "workspace:*",
"warp-drive": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-transform-typescript": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@warp-drive/internal-config": "workspace:*",
"typescript-7": "npm:typescript@7.1.0-dev.20260828.1",
"tsdown": "^0.22.14"
}
}