-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 KB
/
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
50
{
"name": "patchbay.js",
"version": "1.0.2",
"readme": "README.md",
"description": "A physics-based rope simulation library for connecting DOM elements.",
"keywords": [
"patchbay",
"rope",
"physics",
"simulation",
"visualization",
"cable",
"dom",
"interactive"
],
"homepage": "https://github.com/HelgeSverre/patchbay-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/HelgeSverre/patchbay-js.git"
},
"license": "MIT",
"author": {
"name": "Helge Sverre",
"email": "[email protected]",
"url": "https://helgesver.re"
},
"type": "module",
"exports": {
".": {
"import": "./dist/patchbay.es.js",
"require": "./dist/patchbay.cjs.js",
"umd": "./dist/patchbay.umd.js"
}
},
"main": "./dist/patchbay.cjs.js",
"unpkg": "./dist/patchbay.umd.js",
"module": "./dist/patchbay.es.js",
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "npx prettier --write src examples",
"preview": "vite preview",
"sort": "npx sort-package-json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^3.3.3",
"vite": "^4.3.9"
}
}