mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00

* Setup changesets and the changesets GH action * Lower package versions so changesets can bump them * Add changesets for all changes on the `modularization` branch Co-authored-by: Josh de Leeuw <josh.deleeuw@gmail.com> Co-authored-by: Becky Gilbert <beckyannegilbert@gmail.com>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@jspsych/plugin-canvas-keyboard-response",
|
|
"version": "0.1.0",
|
|
"description": "jsPsych plugin for displaying a canvas stimulus and getting a keyboard response",
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"unpkg": "dist/index.browser.min.js",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"source": "src/index.ts",
|
|
"scripts": {
|
|
"test": "jest --passWithNoTests",
|
|
"test:watch": "npm test -- --watch",
|
|
"tsc": "tsc",
|
|
"build": "rollup --config",
|
|
"build:watch": "npm run build -- --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jspsych/jsPsych.git"
|
|
},
|
|
"author": "Chris Jungerius, Josh de Leeuw",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/jspsych/jsPsych/issues"
|
|
},
|
|
"homepage": "https://github.com/jspsych/jsPsych#readme",
|
|
"peerDependencies": {
|
|
"jspsych": ">=6"
|
|
},
|
|
"devDependencies": {
|
|
"@jspsych/config": "^0.1.0",
|
|
"@jspsych/test-utils": "^0.1.0"
|
|
}
|
|
}
|