46 lines
1.4 KiB
JSON
46 lines
1.4 KiB
JSON
{
|
|
"name": "@freesewing/workbench",
|
|
"version": "0.33.0",
|
|
"description": "A React component to facilitate FreeSewing pattern design",
|
|
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
|
|
"homepage": "https://freesewing.org/",
|
|
"repository": "github:freesewing/freesewing",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/freesewing/freesewing/issues"
|
|
},
|
|
"keywords": [
|
|
"freesewing",
|
|
"react",
|
|
"development"
|
|
],
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"scripts": {
|
|
"clean": "rimraf ../../dist/workbench",
|
|
"nodebuild": "BABEL_ENV=production rollup -c -o ../../dist/workbench/index.js -f cjs",
|
|
"modulebuild": "BABEL_ENV=production rollup -c -o ../../dist/workbench/index.mjs -f es",
|
|
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
"test": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
"pubtest": "npm publish --registry http://localhost:6662",
|
|
"test:watch": "react-scripts test --env=jsdom"
|
|
},
|
|
"dependencies": {
|
|
"@freesewing/core": "^0.33.0",
|
|
"@freesewing/i18n": "^0.33.0",
|
|
"@freesewing/plugin-theme": "^0.33.0",
|
|
"react-intl": "^2.8.0"
|
|
},
|
|
"files": [
|
|
"../../dist/packages/workbench/*",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0",
|
|
"npm": ">=5"
|
|
}
|
|
}
|