-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.74 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": "@embroider/addon-dev",
"version": "8.0.0-alpha.0",
"description": "Utilities for addon authors",
"repository": {
"type": "git",
"url": "https://github.com/embroider-build/embroider.git",
"directory": "packages/addon-dev"
},
"license": "MIT",
"author": "Edward Faulkner <edward@eaf4.com>",
"bin": {
"addon-dev": "./src/commands.js"
},
"exports": {
"./template-colocation-plugin": "./src/template-colocation-plugin.js",
"./rollup": "./src/rollup.js"
},
"files": [
"sample-rollup.config.js",
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.js.map"
],
"scripts": {
"test": "jest"
},
"peerDependencies": {
"rollup": "^4.6.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
},
"release-plan": {
"semverIncrementAs": {
"major": "premajor",
"minor": "prerelease",
"patch": "prerelease"
},
"semverIncrementTag": "alpha"
},
"dependencies": {
"@embroider/core": "workspace:^",
"@rollup/pluginutils": "^5.1.0",
"content-tag": "^3.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"minimatch": "^3.0.4",
"rollup-plugin-copy-assets": "^2.0.3",
"walk-sync": "^3.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@embroider/test-support": "workspace:*",
"@glimmer/syntax": "^0.84.2",
"@glint/core": "^1.5.0",
"@glint/template": "^1.5.0",
"@glint/environment-ember-loose": "^1.5.0",
"@glint/environment-ember-template-imports": "^1.5.0",
"@types/fs-extra": "^9.0.12",
"@types/minimatch": "^3.0.4",
"@types/yargs": "^17.0.3",
"rollup": "^3.23.0",
"scenario-tester": "^4.0.0",
"typescript": "^5.4.5"
},
"engines": {
"node": "12.* || 14.* || >= 16"
}
}