-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
{
"name": "vsix-pack",
"version": "0.0.0",
"description": "Pack Visual Studio Code Extensions with ease",
"type": "module",
"author": {
"name": "Lucas Nørgård",
"email": "[email protected]",
"url": "https://luxass.dev"
},
"packageManager": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/luxass/vsix-pack",
"repository": {
"type": "git",
"url": "git+https://github.com/luxass/vsix-pack.git"
},
"bugs": {
"url": "https://github.com/luxass/vsix-pack/issues"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"vsix-pack": "./bin/vsix-pack.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "rolldown -c rolldown.config.mjs",
"dev": "rolldown -c rolldown.config.mjs --watch",
"lint": "eslint .",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"farver": "^0.4.0",
"vsix-builder": "^0.0.2",
"vsix-utils": "^0.0.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@luxass/eslint-config": "^4.14.0",
"@types/node": "20.16.11",
"@types/yargs": "^17.0.33",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"rolldown": "1.0.0-beta.1",
"typescript": "^5.7.2",
"unplugin-isolated-decl": "^0.10.5",
"vitest": "^2.1.8",
"vitest-testdirs": "^1.4.0"
}
}