-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 797 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 797 Bytes
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
{
"name": "@pcllab/create-exp",
"version": "0.4.0",
"description": "A tool to scaffold new jspsych experiments.",
"type": "module",
"main": "index.js",
"bin": "index.js",
"files": [
"index.js",
"template-*",
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"lint": "tsc --noEmit",
"build": "unbuild",
"release": "pnpm build && changeset publish"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.2",
"@types/validate-npm-package-name": "^4.0.0",
"kolorist": "^1.6.0",
"minimist": "^1.2.7",
"prompts": "^2.4.2",
"typescript": "^4.9.5",
"unbuild": "^1.1.1",
"validate-npm-package-name": "^5.0.0"
}
}