-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
138 lines (138 loc) · 4.03 KB
/
package.json
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
132
133
134
135
136
137
138
{
"name": "@cardstack/boxel-ui",
"version": "0.0.0",
"description": "Boxel UI component library",
"keywords": [
"ember-addon"
],
"repository": "",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "concurrently \"npm:build:*\" --names \"build:\"",
"build:js": "rollup --config",
"build:types": "glint --declaration",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:glint": "glint",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "glint",
"rebuild:icons": "node bin/rebuild-icons.mjs",
"rebuild:usage": "node bin/rebuild-usage.mjs",
"prepack": "rollup --config",
"start": "concurrently \"npm:start:*\" --names \"start:\"",
"start:js": "rollup --config --watch --no-watch.clearScreen",
"start:types": "glint --declaration --watch",
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
"test:ember": "ember test"
},
"dependencies": {
"@ember/string": "^3.1.1",
"@embroider/addon-shim": "^1.8.6",
"@floating-ui/dom": "^1.6.3",
"@glint/template": "^1.4.0",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"ember-basic-dropdown": "^8.0.0",
"ember-composable-helpers": "^5.0.0",
"ember-css-url": "^1.0.0",
"ember-focus-trap": "^1.0.1",
"ember-freestyle": "^0.20.0",
"ember-link": "^2.1.0",
"ember-load-initializers": "^2.1.2",
"ember-modifier": "^4.1.0",
"ember-power-select": "^8.0.0",
"ember-ref-bucket": "5.0.5",
"ember-resize-modifier": "^0.6.0",
"ember-set-body-class": "^1.0.2",
"ember-velcro": "^2.1.0",
"file-loader": "^6.2.0",
"focus-trap": "^7.4.3",
"lodash": "^4.17.21",
"tracked-built-ins": "^3.2.0",
"typescript": "~5.1.6"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-class-static-block": "^7.22.11",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/runtime": "^7.22.11",
"@embroider/addon-dev": "^4.1.0",
"@embroider/macros": "^1.13.2",
"@rollup/plugin-babel": "^6.0.3",
"@tsconfig/ember": "3.0.1",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-plugin-ember-template-compilation": "^2.2.1",
"concurrently": "^8.0.1",
"ember-concurrency": "^4.0.1",
"ember-template-imports": "^3.1.2",
"ember-template-lint": "^5.11.2",
"ember-template-lint-plugin-prettier": "^5.0.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-ember": "^11.4.2",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"glimmer-scoped-css": "^0.4.0",
"prettier": "^2.8.7",
"prettier-plugin-ember-template-tag": "^1.1.0",
"rollup": "^3.28.1",
"rollup-plugin-copy": "^3.4.0",
"svgo": "3.0.2"
},
"peerDependencies": {
"@glint/environment-ember-loose": "^1.4.0",
"ember-source": "^4.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": "14.* || 16.* || >= 18"
},
"volta": {
"extends": "../../../package.json"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"app-js": {},
"main": "addon-main.cjs",
"public-assets": {},
"type": "addon",
"version": 2
},
"exports": {
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
},
"./styles/*.css": "./dist/styles/*.css",
"./addon-main.js": "./addon-main.cjs"
},
"files": [
"addon-main.cjs",
"declarations",
"dist",
"public"
],
"typesVersions": {
"*": {
"*": [
"declarations/*"
]
}
}
}