forked from microsoft/vscode-deviceid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "@vscode/deviceid",
"version": "0.1.2",
"description": "A module for Visual Studio Code to generate a unique device ID",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run compile",
"compile": "tsc",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-deviceid"
},
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-deviceid/issues"
},
"homepage": "https://github.com/Microsoft/vscode-deviceid/#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.4",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5"
},
"dependencies": {
"fs-extra": "^11.2.0",
"uuid": "^9.0.1"
}
}