-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "@aurora-launcher/core",
"version": "0.18.0",
"description": "Base library for Aurora Launcher",
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/types/index.d.ts"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prettier": "prettier --write src",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AuroraTeam/AuroraLauncher.git"
},
"author": "AuroraTeam",
"contributors": [
"JoCat (https://github.com/JoCat)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AuroraTeam/AuroraLauncher/issues"
},
"homepage": "https://github.com/AuroraTeam/AuroraLauncher#readme",
"importSort": {
".js, .ts": {
"style": "module",
"parser": "typescript"
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^18.17.15",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.8.0",
"import-sort-style-module": "^6.0.0",
"prettier": "^3.0.3",
"prettier-plugin-import-sort": "0.0.7",
"tsup": "^8.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"adm-zip": "^0.5.10",
"p-map": "^7.0.0",
"undici": "^6.0.1"
}
}