UNPKG

embroider-css-modules

Version:
102 lines 2.7 kB
{ "name": "embroider-css-modules", "version": "3.0.1", "description": "CSS modules for Embroider projects", "keywords": [ "css", "css-modules", "ember-addon", "emberjs", "embroider", "glint", "typescript" ], "repository": { "type": "git", "url": "https://github.com/ijlee2/embroider-css-modules.git" }, "license": "MIT", "author": "Isaac J. Lee", "exports": { ".": { "types": "./declarations/index.d.ts", "default": "./dist/index.js" }, "./*": { "types": "./declarations/*.d.ts", "default": "./dist/*.js" }, "./addon-main.js": "./addon-main.cjs" }, "typesVersions": { "*": { "*": [ "declarations/*" ] } }, "directories": { "doc": "doc", "test": "tests" }, "files": [ "addon-main.cjs", "declarations", "dist" ], "dependencies": { "@embroider/addon-shim": "^1.10.0", "decorator-transforms": "^2.3.0" }, "devDependencies": { "@babel/core": "^7.28.0", "@babel/plugin-transform-typescript": "^7.28.0", "@babel/runtime": "^7.28.2", "@embroider/addon-dev": "^8.1.0", "@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", "@rollup/plugin-babel": "^6.0.4", "babel-plugin-ember-template-compilation": "^2.4.1", "concurrently": "^9.2.0", "ember-source": "~6.6.0", "ember-template-lint": "^7.9.1", "eslint": "^9.32.0", "prettier": "^3.6.2", "rollup": "^4.46.2", "typescript": "^5.9.2", "@shared-configs/ember-template-lint": "0.0.0", "@shared-configs/eslint-config-ember": "0.0.0", "@shared-configs/prettier": "0.0.0", "@shared-configs/typescript": "0.0.0" }, "engines": { "node": "20.* || >= 22" }, "ember": { "edition": "octane" }, "ember-addon": { "app-js": { "./helpers/local.js": "./dist/_app_/helpers/local.js" }, "main": "addon-main.cjs", "type": "addon", "version": 2 }, "scripts": { "build": "rollup --config", "format": "prettier . --cache --write", "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" && pnpm format", "lint:format": "prettier . --cache --check", "lint:hbs": "ember-template-lint .", "lint:hbs:fix": "ember-template-lint . --fix", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "glint", "start": "rollup --config --watch", "test": "echo \"A v2 addon does not have tests, run tests in tests/embroider-css-modules\"" } }