-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.6 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
{
"name": "@ember-data/json-api",
"version": "5.9.0-alpha.10",
"description": "(Legacy) JSON:API document and resource cache implementation for EmberData",
"keywords": [
"ember-addon"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:warp-drive-data/warp-drive.git",
"directory": "packages/json-api"
},
"license": "MIT",
"author": "",
"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",
"addon-main.cjs",
"dist",
"README.md",
"LICENSE.md",
"logos"
],
"exports": {
".": {
"types": "./unstable-preview-types/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./unstable-preview-types/*.d.ts",
"default": "./dist/*.js"
}
},
"peerDependencies": {},
"dependencies": {
"@embroider/macros": "^1.19.6",
"@warp-drive/core": "workspace:*",
"@warp-drive/json-api": "workspace:*",
"@warp-drive/utilities": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-transform-typescript": "^7.28.0",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@warp-drive/internal-config": "workspace:*",
"expect-type": "^1.2.2",
"vite": "^7.3.1"
},
"ember": {
"edition": "octane"
},
"volta": {
"extends": "../../package.json"
}
}