-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 987 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
{
"name": "@synesthesia-project/core",
"version": "0.0.5",
"description": "Core synesthesia libraries, type definitions & protocols",
"license": "MIT",
"main": "index.js",
"types": "index.d.js",
"author": {
"name": "Sam Lanning",
"email": "[email protected]",
"url": "https://samlanning.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/synesthesia-project/synesthesia"
},
"scripts": {
"clean": "gulp clean",
"build": "gulp",
"lint": "gulp lint",
"lint:fix": "gulp lint:fix"
},
"files": [
"lib/**/*",
"index.d.ts",
"index.js",
"README.md"
],
"dependencies": {
"@types/lodash": "^4.14.120",
"@types/uuid": "~9.0.0",
"fp-ts": "~2.13.1",
"io-ts": "~2.2.20",
"json-socket": "^0.3.0",
"lodash": "^4.17.13",
"uuid": "~9.0.0"
},
"devDependencies": {
"@synesthesia-project/gulp-util": "~0.0.1",
"@types/json-socket": "^0.1.17",
"gulp": "~4.0.2"
}
}