-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
110 lines (110 loc) · 3.23 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
{
"name": "@frontile/notifications",
"version": "0.17.0-beta.5",
"description": "Component Library for Ember Octane apps: Notifications",
"keywords": [
"ember-addon",
"frontile"
],
"repository": "https://github.com/josemarluedke/frontile",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"files": [
"addon-main.js",
"declarations",
"dist"
],
"scripts": {
"build": "concurrently -m 1 'npm: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:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js:fix": "eslint . --fix",
"lint:types": "glint",
"start": "concurrently 'npm:start:*'",
"start:js": "rollup --config --watch --no-watch.clearScreen",
"start:types": "glint -d --watch",
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
"prepack": "concurrently 'npm:build'"
},
"peerDependencies": {
"@babel/runtime": ">= 7",
"ember-source": ">= 4.12.0"
},
"dependencies": {
"@ember/render-modifiers": "^2.1.0",
"@embroider/addon-shim": "^1.9.0",
"@frontile/buttons": "workspace:0.17.0-beta.5",
"@frontile/theme": "workspace:0.17.0-beta.5",
"ember-auto-import": "^2.7.2",
"ember-css-transitions": "^4.4.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-transform-class-static-block": "^7.23.4",
"@babel/preset-typescript": "7.26.0",
"@embroider/addon-dev": "7.1.1",
"@glimmer/component": "^2.0.0",
"@glimmer/tracking": "^1.1.2",
"@glint/core": "1.5.0",
"@glint/environment-ember-loose": "1.5.0",
"@glint/environment-ember-template-imports": "1.5.0",
"@glint/template": "1.5.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@tsconfig/ember": "^3.0.5",
"babel-plugin-ember-template-compilation": "^2.2.1",
"concurrently": "^9.1.0",
"ember-source": "^6.1.0",
"rollup": "^4.29.1",
"rollup-plugin-ts": "^3.4.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"engines": {
"node": "10.* || >= 12"
},
"publishConfig": {
"access": "public"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.js",
"app-js": {
"./components/notification-card.js": "./dist/_app_/components/notification-card.js",
"./components/notifications-container.js": "./dist/_app_/components/notifications-container.js",
"./services/notifications.js": "./dist/_app_/services/notifications.js"
}
},
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
},
"./addon-main.js": "./addon-main.js"
},
"typesVersions": {
"*": {
"*": [
"declarations/*"
]
}
}
}