|
1 | 1 | { |
2 | 2 | "name": "ember-source-lens", |
3 | 3 | "version": "0.0.0", |
4 | | - "description": "The default blueprint for Embroider v2 addons.", |
5 | | - "packageManager": "pnpm@10.20.0", |
| 4 | + "description": "Ember Source Lens is a developer tool that allows you to click on rendered Ember components in the browser and jump directly to their source code in your editor.", |
6 | 5 | "keywords": [ |
7 | 6 | "ember-addon" |
8 | 7 | ], |
9 | | - "type": "module", |
10 | | - "repository": "", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "git@github.com:ember-tooling/ember-code-lens.git" |
| 11 | + }, |
11 | 12 | "license": "MIT", |
12 | | - "author": "", |
| 13 | + "author": "Liam Potter", |
| 14 | + "type": "module", |
13 | 15 | "imports": { |
14 | 16 | "#src/*": "./src/*" |
15 | 17 | }, |
|
29 | 31 | ], |
30 | 32 | "scripts": { |
31 | 33 | "build": "rollup --config", |
| 34 | + "dev": "pnpm start", |
32 | 35 | "format": "prettier . --cache --write", |
33 | 36 | "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto", |
34 | 37 | "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format", |
|
40 | 43 | "lint:types": "ember-tsc --noEmit", |
41 | 44 | "prepack": "rollup --config", |
42 | 45 | "start": "pnpm prepack && vite dev", |
43 | | - "dev": "pnpm start", |
44 | | - "test:app": "pnpm prepack && vite build --mode=development --out-dir dist-tests && testem --file testem.cjs ci --port 0", |
45 | 46 | "test": "pnpm prepack && vitest", |
| 47 | + "test:app": "pnpm prepack && vite build --mode=development --out-dir dist-tests && testem --file testem.cjs ci --port 0", |
46 | 48 | "test:ui": "pnpm prepack && vitest --ui" |
47 | 49 | }, |
48 | 50 | "dependencies": { |
|
105 | 107 | "prettier-plugin-ember-template-tag": "^2.0.4", |
106 | 108 | "qunit": "^2.24.1", |
107 | 109 | "qunit-dom": "^3.4.0", |
| 110 | + "release-plan": "^0.17.0", |
108 | 111 | "rollup": "^4.22.5", |
109 | 112 | "rollup-plugin-postcss": "^4.0.2", |
110 | 113 | "testem": "^3.15.1", |
|
114 | 117 | "vite-css-modules": "^1.11.1", |
115 | 118 | "vitest": "^4.0.8" |
116 | 119 | }, |
| 120 | + "packageManager": "pnpm@10.20.0", |
117 | 121 | "ember": { |
118 | 122 | "edition": "octane" |
119 | 123 | }, |
|
0 commit comments