-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
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
51
52
53
54
55
56
57
58
59
60
{
"name": "@malven/gui",
"version": "1.6.0",
"description": "An abstraction layer over dat.gui that simplifies use and adds automatic support through MIDI devices.",
"files": [
"dist"
],
"main": "./dist/gui.umd.js",
"module": "./dist/gui.es.js",
"types": "./dist/gui.d.ts",
"exports": {
".": {
"import": "./dist/gui.es.js",
"require": "./dist/gui.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmalven/gui.git"
},
"author": "Chris Malven",
"license": "MIT",
"bugs": {
"url": "https://github.com/cmalven/gui/issues"
},
"homepage": "https://github.com/cmalven/gui#readme",
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@malven/eslint-config": "^1.0.3",
"@types/dat.gui": "^0.7.7",
"@types/mousetrap": "^1.6.8",
"@types/webmidi": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.27.7",
"chokidar-cli": "^3.0.0",
"core-js": "^3.6.5",
"eslint-plugin-react": "^7.27.1",
"jest": "^25.5.4",
"typescript": "^4.5.2",
"vite": "^2.6.14"
},
"dependencies": {
"clipboardy": "^3.0.0",
"dat.gui": "^0.7.7",
"eslint": "^8.3.0",
"mousetrap": "^1.6.5",
"webmidi": "^2.5.3"
},
"eslintConfig": {
"extends": "@malven"
},
"scripts": {
"build": "vite build && tsc",
"test": "jest",
"dev": "jest --watchAll & chokidar 'src/**/*' 'test/**/*' -c 'npm run build'",
"dev:example": "browser-sync start --server --files '**/*.html' 'dist/**/*.js' --index 'example/index.html' --no-open --port 3333"
}
}