-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.36 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vscode-extensions-json-generator",
"author": "elazarcoh",
"module": "dist/vscode-extensions-json-generator.esm.js",
"version": "0.2.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elazarcoh/vscode-extension-packagejson-generator"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*/index.js"
},
"workspaces": [
"submodules/*"
],
"bin": {
"update-package-json": "./bin.js"
},
"typesVersions": {
"*": {
"*": [
"dist/*",
"dist/*/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"update-package-json": "node ./bin.js",
"build-production": "yarn run clean-build",
"build": "esbuild src/index.ts src/utils/index.ts src/webpack/index.ts --external:vscode --bundle --platform=node --outdir=dist && tsc --emitDeclarationOnly --outDir dist",
"clean-build": "yarn run clean && yarn run build",
"clean": "rimraf out dist coverage ./test/extension-example-configuration/out",
"lint": "eslint \"src/**/*.ts\" \"*.js\"",
"test": "mocha --timeout 10000"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/deep-equal": "^1.0.1",
"@types/glob": "^7.1.4",
"@types/json-schema": "^7.0.8",
"@types/mocha": "^9.0.0",
"@types/mocha-steps": "^1.3.0",
"@types/node": "^16.7.10",
"@types/vscode": "^1.60.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.1.0",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"glob": "^7.1.7",
"install-peers": "^1.0.4",
"mocha": "^9.1.1",
"mocha-steps": "^1.3.0",
"mocha-suppress-logs": "^0.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"ajv": "^8.6.3",
"better-ajv-errors": "^0.8.2",
"commander": "^8.1.0",
"deep-equal": "^2.0.5",
"json5": "^2.2.2",
"ts-json-schema-generator": "^2.3.0"
},
"packageManager": "[email protected]"
}