|
16 | 16 | "types": "./declarations/index.d.ts", |
17 | 17 | "default": "./dist/index.js" |
18 | 18 | }, |
19 | | - "./*": { |
20 | | - "types": "./declarations/*", |
21 | | - "default": "./dist/*" |
| 19 | + "./_app_/*": { |
| 20 | + "default": "./dist/_app_/*" |
| 21 | + }, |
| 22 | + "./services/page-title": { |
| 23 | + "types": "./declarations/services/page-title.d.ts", |
| 24 | + "default": "./dist/services/page-title.js" |
| 25 | + }, |
| 26 | + "./helpers/page-title": { |
| 27 | + "types": "./declarations/helpers/page-title.d.ts", |
| 28 | + "default": "./dist/helpers/page-title.js" |
22 | 29 | }, |
23 | 30 | "./test-support": { |
24 | 31 | "types": "./declarations/test-support/index.d.ts", |
25 | 32 | "default": "./dist/test-support/index.js" |
26 | 33 | }, |
| 34 | + "./template-registry": { |
| 35 | + "types": "./declarations/template-registry.d.ts" |
| 36 | + }, |
| 37 | + "./service-registry": { |
| 38 | + "types": "./declarations/service-registry.d.ts" |
| 39 | + }, |
27 | 40 | "./addon-main.js": "./addon-main.js" |
28 | 41 | }, |
29 | 42 | "files": [ |
|
40 | 53 | "lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'", |
41 | 54 | "lint:js": "eslint . --cache", |
42 | 55 | "lint:js:fix": "eslint . --fix", |
43 | | - "lint:types": "glint", |
| 56 | + "lint:types": "glint --declaration", |
44 | 57 | "prepack": "rollup --config", |
45 | 58 | "start": "concurrently 'npm:start:*'", |
46 | 59 | "start:js": "rollup --config --watch --no-watch.clearScreen", |
47 | 60 | "start:types": "glint --declaration --watch" |
48 | 61 | }, |
49 | 62 | "dependencies": { |
50 | | - "@embroider/addon-shim": "^1.8.7" |
| 63 | + "@embroider/addon-shim": "^1.8.7", |
| 64 | + "@simple-dom/document": "^1.4.0" |
51 | 65 | }, |
52 | 66 | "peerDependencies": { |
53 | 67 | "ember-source": ">= 3.28.0" |
|
0 commit comments