@jspsych/new-timeline
Version:
CLI tool for creating new jsPsych timelines
35 lines • 860 B
JSON
{
"name": "{npmPackageName}",
"version": "0.0.1",
"description": "{description}",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.browser.min.js",
"scripts": {
"build": "tsup src/index.ts --format esm,iife --sourcemap --dts --treeshake --clean --global-name {globalName}"
},
"repository": {
"type": "git",
"url": "{gitRootUrl}",
"directory": "{packageDir}"
},
"keywords": [
"jsPsych"
],
"author": {
"name": "{author}",
"url": "{authorUrl}"
},
"license": "MIT",
"bugs": {
"url": "{gitRootHttpsUrl}/issues"
},
"homepage": "{documentationUrl}",
"devDependencies": {
"jspsych": "^8.0.0",
"@jspsych/config": "^3.2.2",
"tsup": "^6.7.0",
"typescript": "^5.0.2"
}
}