-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.3 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "ember-basic-dropdown",
"version": "8.9.0",
"description": "The basic dropdown that your ember app needs",
"keywords": [
"ember-addon"
],
"repository": "https://github.com/cibernox/ember-basic-dropdown",
"license": "MIT",
"author": "Miguel Camba",
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
},
"./addon-main.js": "./addon-main.cjs",
"./ember-basic-dropdown.less": "./ember-basic-dropdown.less",
"./ember-basic-dropdown.scss": "./ember-basic-dropdown.scss",
"./_index.scss": "./_index.scss",
"./less/base.less": "./less/base.less",
"./scss/base.scss": "./scss/base.scss",
"./less/variables.less": "./less/variables.less",
"./scss/variables.scss": "./scss/variables.scss",
"./vendor/*": "./dist/vendor/*"
},
"typesVersions": {
"*": {
"*": [
"declarations/*"
]
}
},
"files": [
"_index.scss",
"addon-main.cjs",
"blueprints",
"declarations",
"dist",
"ember-basic-dropdown.less",
"ember-basic-dropdown.scss",
"less",
"scss"
],
"scripts": {
"build": "rollup --config",
"format": "prettier . --cache --write",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format",
"lint:format": "prettier . --cache --check",
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "glint",
"prepack": "rollup --config",
"start": "rollup --config --watch",
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
},
"dependencies": {
"@embroider/addon-shim": "^1.10.2",
"@embroider/macros": "^1.19.5",
"decorator-transforms": "^2.3.0",
"ember-element-helper": "^0.8.8",
"ember-modifier": "^4.2.2",
"ember-style-modifier": "^4.5.1",
"ember-truth-helpers": "^4.0.3 || ^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-transform-typescript": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@ember/library-tsconfig": "^1.1.3",
"@ember/string": "^4.0.1",
"@ember/test-helpers": "^5.4.1",
"@embroider/addon-dev": "^8.1.2",
"@eslint/js": "^9.39.1",
"@glint/core": "^1.5.2",
"@glint/environment-ember-loose": "^1.5.2",
"@glint/environment-ember-template-imports": "^1.5.2",
"@glint/template": "1.5.2",
"@glimmer/component": "^2.0.0",
"@glimmer/tracking": "^1.1.2",
"@rollup/plugin-babel": "^6.1.0",
"babel-plugin-ember-template-compilation": "^2.3.0",
"concurrently": "^9.2.1",
"ember-source": "^6.8.1",
"ember-template-lint": "^7.9.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-ember": "^12.7.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"postcss": "^8.5.6",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"prettier-plugin-ember-template-tag": "^2.1.2",
"rollup": "^4.53.3",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-sass": "^1.15.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.1",
"webpack": "^5.103.0"
},
"peerDependencies": {
"@ember/test-helpers": "^2.9.4 || ^3.2.1 || ^4.0.2 || ^5.0.0",
"@glimmer/component": "^1.1.2 || ^2.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.cjs",
"app-js": {
"./components/basic-dropdown-content.js": "./dist/_app_/components/basic-dropdown-content.js",
"./components/basic-dropdown-trigger.js": "./dist/_app_/components/basic-dropdown-trigger.js",
"./components/basic-dropdown-wormhole.js": "./dist/_app_/components/basic-dropdown-wormhole.js",
"./components/basic-dropdown.js": "./dist/_app_/components/basic-dropdown.js",
"./modifiers/basic-dropdown-trigger.js": "./dist/_app_/modifiers/basic-dropdown-trigger.js"
}
}
}