forked from josemarluedke/frontile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.28 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/buttons",
"version": "0.17.0-alpha.15",
"description": "Component Library for Ember Octane apps: Buttons",
"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.0.0 || ^5.0.0"
},
"dependencies": {
"@embroider/addon-shim": "^1.8.7",
"@frontile/theme": "workspace:0.17.0-alpha.15",
"@frontile/utilities": "workspace:0.17.0-alpha.15"
},
"devDependencies": {
"@babel/core": "7.24.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.24.0",
"@babel/plugin-transform-class-static-block": "^7.23.4",
"@babel/plugin-transform-private-methods": "^7.23.3",
"@babel/preset-typescript": "7.23.3",
"@embroider/addon-dev": "4.2.1",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"@glint/core": "1.3.0",
"@glint/environment-ember-loose": "1.3.0",
"@glint/environment-ember-template-imports": "1.3.0",
"@glint/template": "1.3.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/ember": "^3.0.5",
"babel-plugin-ember-template-compilation": "^2.2.1",
"concurrently": "^8.2.2",
"ember-source": "^5.7.0",
"rollup": "^4.12.1",
"rollup-plugin-ts": "^3.4.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
},
"engines": {
"node": "10.* || >= 12"
},
"publishConfig": {
"access": "public"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.js",
"app-js": {
"./components/button-group.js": "./dist/_app_/components/button-group.js",
"./components/button.js": "./dist/_app_/components/button.js",
"./components/chip.js": "./dist/_app_/components/chip.js",
"./components/close-button.js": "./dist/_app_/components/close-button.js",
"./components/toggle-button.js": "./dist/_app_/components/toggle-button.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/*"
]
}
}
}