-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 897 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "patchcab-template",
"description": "Patchab module template",
"version": "1.0.0",
"author": {
"name": "Your name",
"url": "https://your-site"
},
"license": "MIT",
"files": [
"modules"
],
"scripts": {
"start": "patchcab",
"build": "patchcab --build",
"prepublish": "yarn build"
},
"patchcab": [
{
"name": "Module name",
"file": "module",
"size": {
"w": 6,
"h": 1
},
"tags": [
"video"
],
"libs": [
"Tone"
]
}
],
"prettier": {
"useTabs": false,
"arrowParens": "always",
"semi": true,
"bracketSpacing": true,
"singleQuote": true,
"printWidth": 120,
"svelteSortOrder": "options-scripts-styles-markup"
},
"dependencies": {
"@patchcab/core": "^1.1.3"
},
"devDependencies": {
"@patchcab/modules": "^1.1.3"
}
}