-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
111 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,81 @@ | ||
{ | ||
"name": "@scena/react-guides", | ||
"version": "0.19.0", | ||
"description": "A React Guides component that can draw ruler and manage guidelines.", | ||
"main": "./dist/guides.cjs.js", | ||
"module": "./dist/guides.esm.js", | ||
"sideEffects": false, | ||
"types": "declaration/index.d.ts", | ||
"scripts": { | ||
"lint": "tslint -c tslint.json 'src/**/*.ts'", | ||
"start": "SKIP_PREFLIGHT_CHECK=true react-scripts start", | ||
"build": "rollup -c && npm run declaration && print-sizes ./dist ", | ||
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json", | ||
"update": "npm run update:react && npm run update:preact && npm run update:react-compat", | ||
"update:react": "npm i @scena/react-ruler@latest", | ||
"update:react-compat": "cd ../react-compat-guides && npm i react-compat-ruler@latest", | ||
"update:preact": "cd ../preact-guides && npm i preact-ruler@latest" | ||
}, | ||
"keywords": [ | ||
"scene", | ||
"scenejs", | ||
"scene.js", | ||
"scena", | ||
"guides", | ||
"guidelines", | ||
"scroller", | ||
"ruler", | ||
"react" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/daybrush/guides/blob/master/packages/react-guides" | ||
}, | ||
"author": "Daybrush", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/daybrush/guides/issues" | ||
}, | ||
"homepage": "https://daybrush.com/guides", | ||
"devDependencies": { | ||
"@daybrush/builder": "^0.1.0", | ||
"@scenejs/effects": "^1.0.1", | ||
"@types/react": "^16.8.18", | ||
"@types/react-color": "^3.0.1", | ||
"@types/react-dom": "^16.8.4", | ||
"print-sizes": "^0.2.0", | ||
"react": "^16.8.6", | ||
"react-dom": "^16.8.6", | ||
"react-scripts": "^3.0.1", | ||
"shape-svg": "^0.3.3", | ||
"tslint": "^5.20.1", | ||
"typescript": "^4.5.0 <4.6.0" | ||
}, | ||
"dependencies": { | ||
"@daybrush/utils": "^1.4.0", | ||
"@scena/dragscroll": "^1.3.0", | ||
"@scena/react-ruler": "^0.12.2", | ||
"css-to-mat": "^1.0.3", | ||
"framework-utils": "^1.1.0", | ||
"gesto": "^1.13.4", | ||
"react-css-styled": "^1.0.2" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
"name": "@scena/react-guides", | ||
"version": "0.19.0", | ||
"description": "A React Guides component that can draw ruler and manage guidelines.", | ||
"main": "./dist/guides.cjs.js", | ||
"module": "./dist/guides.esm.js", | ||
"sideEffects": false, | ||
"types": "declaration/index.d.ts", | ||
"scripts": { | ||
"lint": "tslint -c tslint.json 'src/**/*.ts'", | ||
"start": "SKIP_PREFLIGHT_CHECK=true react-scripts start", | ||
"build": "rollup -c && npm run declaration && print-sizes ./dist ", | ||
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json", | ||
"update": "npm run update:react && npm run update:preact && npm run update:react-compat", | ||
"update:react": "npm i @scena/react-ruler@latest", | ||
"update:react-compat": "cd ../react-compat-guides && npm i react-compat-ruler@latest", | ||
"update:preact": "cd ../preact-guides && npm i preact-ruler@latest" | ||
}, | ||
"keywords": [ | ||
"scene", | ||
"scenejs", | ||
"scene.js", | ||
"scena", | ||
"guides", | ||
"guidelines", | ||
"scroller", | ||
"ruler", | ||
"react" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
} | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/daybrush/guides/blob/master/packages/react-guides" | ||
}, | ||
"author": "Daybrush", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/daybrush/guides/issues" | ||
}, | ||
"homepage": "https://daybrush.com/guides", | ||
"files": [ | ||
"./*", | ||
"src/*", | ||
"dist/*", | ||
"README.md" | ||
], | ||
"devDependencies": { | ||
"@daybrush/builder": "^0.1.0", | ||
"@scenejs/effects": "^1.0.1", | ||
"@types/react": "^16.8.18", | ||
"@types/react-color": "^3.0.1", | ||
"@types/react-dom": "^16.8.4", | ||
"print-sizes": "^0.2.0", | ||
"react": "^16.8.6", | ||
"react-dom": "^16.8.6", | ||
"react-scripts": "^3.0.1", | ||
"shape-svg": "^0.3.3", | ||
"tslint": "^5.20.1", | ||
"typescript": "^4.5.0 <4.6.0" | ||
}, | ||
"dependencies": { | ||
"@daybrush/utils": "^1.4.0", | ||
"@scena/dragscroll": "^1.3.0", | ||
"@scena/react-ruler": "^0.12.2", | ||
"css-to-mat": "^1.0.3", | ||
"framework-utils": "^1.1.0", | ||
"gesto": "^1.13.4", | ||
"react-css-styled": "^1.0.2" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters