ember-welcome-page
Version:
Welcome page for Ember CLI applications
99 lines (98 loc) • 2.69 kB
JSON
{
"name": "ember-welcome-page",
"version": "7.0.2",
"description": "Welcome page for Ember CLI applications",
"keywords": [
"ember-addon"
],
"repository": "https://github.com/ember-cli/ember-welcome-page",
"license": "MIT",
"author": "David Baker <acorncom@gmail.com>",
"exports": {
".": "./dist/index.js",
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./addon-main.js": "./addon-main.js"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"directories": {
"doc": "doc",
"test": "tests"
},
"files": [
"addon-main.js",
"dist",
"images"
],
"scripts": {
"build": "rollup --config",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"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.8.5"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-typescript": "^7.21.5",
"@embroider/addon-dev": "^3.1.0",
"@glimmer/component": "^1.1.2",
"@glint/core": "^1.0.2",
"@glint/environment-ember-loose": "^1.0.2",
"@glint/template": "^1.0.2",
"@tsconfig/ember": "^2.0.0",
"@types/ember__application": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^8.0.1",
"ember-template-lint": "^5.9.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-ember": "^11.7.2",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"rollup": "^3.23.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-ts": "^3.2.0",
"typescript": "^5.0.4"
},
"engines": {
"node": "14.* || 16.* || >= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.js",
"app-js": {
"./components/welcome-page.js": "./dist/_app_/components/welcome-page.js"
},
"public-assets": {
"./images/construction.png": "/ember-welcome-page/images/construction.png"
}
}
}