Bump patch and add uuid types for typescript
This commit is contained in:
parent
4d62421446
commit
11e9176cb8
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.3.4",
|
||||
"version": "1.3.5",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -19,6 +19,15 @@
|
|||
"integrity": "sha512-wa09itaLE8L705aXd8F80jnFpxz3Y1/KRHfKsYL2bPc0XF+wEWu8sR9n5bmeu8Ba1N9z2GRNzm/YdHcghLkLKg==",
|
||||
"dev": true
|
||||
},
|
||||
"@types/uuid": {
|
||||
"version": "3.4.4",
|
||||
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.4.tgz",
|
||||
"integrity": "sha512-tPIgT0GUmdJQNSHxp0X2jnpQfBSTfGxUMc/2CXBU2mnyTFVYVa2ojpoQ74w0U2yn2vw3jnC640+77lkFFpdVDw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"ajv": {
|
||||
"version": "6.10.0",
|
||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.3.4",
|
||||
"version": "1.3.5",
|
||||
"description": "Small gauge film optical printer platform",
|
||||
"main": "build.js",
|
||||
"directories": {
|
||||
|
@ -26,6 +26,7 @@
|
|||
"devDependencies": {
|
||||
"@types/electron": "^1.6.10",
|
||||
"@types/node": "^11.10.4",
|
||||
"@types/uuid": "^3.4.4",
|
||||
"typescript": "^3.3.3333"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ declare module 'log';
|
|||
declare module 'intval';
|
||||
declare module 'electron';
|
||||
declare module 'fs-extra';
|
||||
declare module 'uuid';
|
||||
declare module 'exec';
|
||||
declare module 'spawn';
|
||||
declare module 'systeminformation';
|
||||
|
|
Loading…
Reference in New Issue