-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 988 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@jspsych/timeline-template",
"version": "0.0.1",
"description": "A template for a shareable, configurable jsPsych timeline",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.global.js",
"scripts": {
"build": "tsup src/index.ts --format esm,iife --sourcemap --dts --treeshake --clean --global-name jsPsychTimelineArrowFlankerTask"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jspsych/shareable-timelines-draft.git"
},
"keywords": [
"jsPsych"
],
"author": "Josh de Leeuw",
"license": "MIT",
"bugs": {
"url": "https://github.com/jspsych/shareable-timelines-draft/issues"
},
"homepage": "https://github.com/jspsych/shareable-timelines-draft#readme",
"peerDependencies": {
"jspsych": "^7.3.2"
},
"dependencies": {
"@jspsych/plugin-html-keyboard-response": "^1.1.2"
},
"devDependencies": {
"tsup": "^6.7.0",
"typescript": "^5.0.2"
}
}