@blueprintui/typography
Advanced tools
Comparing version 2.1.4 to 2.1.5
168
package.json
{ | ||
"name": "@blueprintui/typography", | ||
"version": "2.1.4", | ||
"main": "index.js", | ||
"version": "2.1.5", | ||
"type": "module", | ||
@@ -17,9 +16,166 @@ "license": "MIT", | ||
}, | ||
"publishConfig": { | ||
"provenance": true | ||
"exports": { | ||
"./package.json": "./package.json", | ||
"./*": "./dist/*" | ||
}, | ||
"files": [ | ||
"package.json", | ||
"README.md", | ||
"LICENSE.md", | ||
"dist/**/*" | ||
], | ||
"optionalDependencies": { | ||
"@blueprintui/themes": "^2.1.0", | ||
"modern-normalize": "^2.0.0" | ||
"@blueprintui/themes": "workspace:^", | ||
"modern-normalize": "catalog:" | ||
}, | ||
"devDependencies": { | ||
"@blueprintui/layout": "workspace:^", | ||
"@blueprintui/test": "workspace:^", | ||
"@blueprintui/themes": "workspace:^", | ||
"@web/dev-server": "catalog:", | ||
"@web/dev-server-esbuild": "catalog:", | ||
"@web/dev-server-rollup": "catalog:", | ||
"@web/test-runner": "catalog:", | ||
"@web/test-runner-core": "catalog:", | ||
"@web/test-runner-playwright": "catalog:", | ||
"@web/test-runner-visual-regression": "catalog:", | ||
"lit": "catalog:", | ||
"playwright": "catalog:", | ||
"publint": "catalog:" | ||
}, | ||
"scripts": { | ||
"ci": "wireit", | ||
"start": "wireit", | ||
"build": "wireit", | ||
"build:watch": "wireit", | ||
"test": "wireit", | ||
"test:visual": "wireit", | ||
"test:visual:update": "wireit", | ||
"drafter": "wireit", | ||
"drafter:watch": "wireit" | ||
}, | ||
"wireit": { | ||
"start": { | ||
"dependencies": [ | ||
"build:watch", | ||
"drafter:watch" | ||
] | ||
}, | ||
"ci": { | ||
"dependencies": [ | ||
"lint", | ||
"build", | ||
"test", | ||
"drafter" | ||
] | ||
}, | ||
"lint": { | ||
"dependencies": [ | ||
"lint:publish" | ||
] | ||
}, | ||
"lint:publish": { | ||
"command": "publint", | ||
"dependencies": [ | ||
"build" | ||
], | ||
"files": [ | ||
"./dist", | ||
"./package.json", | ||
"./README.md", | ||
"./LICENSE.md" | ||
], | ||
"output": [] | ||
}, | ||
"build": { | ||
"command": "node ./build.js", | ||
"dependencies": [ | ||
"../themes:build" | ||
], | ||
"files": [ | ||
"./src/**/*", | ||
"./build.js", | ||
"./package.json", | ||
"./README.md", | ||
"./LICENSE" | ||
], | ||
"output": [ | ||
"./dist" | ||
] | ||
}, | ||
"build:watch": { | ||
"command": "node --watch ./build.js", | ||
"service": true | ||
}, | ||
"drafter": { | ||
"command": "drafter build --config ./blueprint.config.js", | ||
"dependencies": [ | ||
"build" | ||
], | ||
"files": [ | ||
"./src/**/*.examples.js", | ||
"./package.json" | ||
], | ||
"output": [ | ||
"./.drafter" | ||
] | ||
}, | ||
"drafter:watch": { | ||
"command": "drafter build --watch --config ./blueprint.config.js", | ||
"service": true | ||
}, | ||
"test": { | ||
"dependencies": [ | ||
"test:visual", | ||
"test:performance" | ||
] | ||
}, | ||
"test:performance": { | ||
"command": "node ../test/dist/wtr.js --config ./web-test-runner.performance.mjs", | ||
"files": [ | ||
"./src/**/*.scss", | ||
"./src/**/*.performance.js", | ||
"./package.json" | ||
], | ||
"dependencies": [ | ||
"../test:build", | ||
"build" | ||
], | ||
"output": [] | ||
}, | ||
"test:visual": { | ||
"command": "node ../test/dist/wtr.js --config ./web-test-runner.visual.mjs", | ||
"dependencies": [ | ||
"build", | ||
"../components:build", | ||
"../layout:build", | ||
"../test:build", | ||
"../themes:build" | ||
], | ||
"files": [ | ||
"./src/**/*", | ||
"./web-dev-server.config.mjs", | ||
"./web-test-runner.visual.mjs" | ||
], | ||
"output": [] | ||
}, | ||
"test:visual:update": { | ||
"command": "node ../test/dist/wtr.js --update-visual-baseline --config ./web-test-runner.visual.mjs", | ||
"dependencies": [ | ||
"build", | ||
"../components:build", | ||
"../layout:build", | ||
"../test:build", | ||
"../themes:build" | ||
], | ||
"files": [ | ||
"./src/**/*", | ||
"./web-dev-server.config.mjs", | ||
"./web-test-runner.visual.mjs" | ||
], | ||
"output": [ | ||
"screenshots/Chromium/baseline/**/*.png" | ||
] | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15423
13
1