mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-06 05:22:52 +00:00
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "@openstapps/angular-builder",
|
|
"version": "3.2.0",
|
|
"type": "module",
|
|
"license": "GPL-3.0-only",
|
|
"author": "Thea Schöbl <dev@theaninova.de>",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"schemas",
|
|
"builders.json",
|
|
"README.md",
|
|
"CHANGELOG.md"
|
|
],
|
|
"builders": "builders.json",
|
|
"scripts": {
|
|
"build": "tsup-node --dts",
|
|
"docs": "typedoc --json ./docs/docs.json --options ../../typedoc.base.json src/index.ts",
|
|
"format": "prettier . -c --ignore-path ../../.gitignore",
|
|
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
|
|
"lint": "eslint --ext .ts src/",
|
|
"lint:fix": "eslint --fix --ext .ts src/",
|
|
"test": "c8 mocha"
|
|
},
|
|
"dependencies": {
|
|
"@angular-devkit/architect": "0.1703.0",
|
|
"@angular-devkit/build-angular": "17.3.0",
|
|
"@angular-devkit/core": "17.3.0",
|
|
"cosmiconfig": "8.1.3",
|
|
"rxjs": "7.8.1",
|
|
"fontkit": "2.0.2",
|
|
"glob": "10.3.10"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/schematics": "17.3.0",
|
|
"@openstapps/prettier-config": "workspace:*",
|
|
"@openstapps/tsconfig": "workspace:*",
|
|
"@types/fontkit": "2.0.7",
|
|
"@types/glob": "8.1.0",
|
|
"@types/node": "18.15.3",
|
|
"@types/chai": "4.3.5",
|
|
"@types/chai-as-promised": "7.1.5",
|
|
"@types/chai-spies": "1.0.3",
|
|
"@types/mocha": "10.0.1",
|
|
"c8": "7.14.0",
|
|
"chai": "4.3.7",
|
|
"chai-as-promised": "7.1.1",
|
|
"chai-spies": "1.0.0",
|
|
"mocha": "10.2.0",
|
|
"mocha-junit-reporter": "2.2.0",
|
|
"tsup": "6.7.0",
|
|
"ts-node": "10.9.2",
|
|
"typescript": "5.4.2"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/application.ts",
|
|
"src/index.ts"
|
|
],
|
|
"sourcemap": true,
|
|
"clean": true,
|
|
"format": "esm",
|
|
"outDir": "lib"
|
|
},
|
|
"prettier": "@openstapps/prettier-config",
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@openstapps"
|
|
]
|
|
}
|
|
}
|