generated from kirishima-ship/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.22 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
{
"name": "lavalink-api-types",
"author": {
"name": "KagChi"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./v3": {
"types": "./dist/v3/index.d.ts",
"import": "./dist/v3/index.mjs",
"require": "./dist/v3/index.js"
},
"./v4": {
"types": "./dist/v4/index.d.ts",
"import": "./dist/v4/index.mjs",
"require": "./dist/v4/index.js"
},
"./equalizer": {
"types": "./dist/equalizer.d.ts",
"import": "./dist/equalizer.mjs",
"require": "./dist/equalizer.js"
},
"./common": {
"types": "./dist/common.d.ts",
"import": "./dist/common.mjs",
"require": "./dist/common.js"
}
},
"version": "2.0.2",
"license": "GPL-3.0",
"repository": {
"url": "https://github.com/kirishima-ship/lavalink-api-types"
},
"bugs": {
"url": "https://github.com/kirishima-ship/lavalink-api-types/issues"
},
"readme": "https://github.com/kirishima-ship/lavalink-api-types/blob/main/README.md",
"engines": {
"node": ">=20.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "rimraf dist && tsc && pnpm run build:esm",
"build:esm": "gen-esm-wrapper dist/index.js dist/index.mjs && gen-esm-wrapper dist/v3/index.js dist/v3/index.mjs && gen-esm-wrapper dist/v4/index.js dist/v4/index.mjs && gen-esm-wrapper dist/common.js dist/common.mjs && gen-esm-wrapper dist/equalizer.js dist/equalizer.mjs",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {}
},
"devDependencies": {
"@hazmi35/eslint-config": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"gen-esm-wrapper": "^1.1.3",
"rimraf": "5.0.9",
"typescript": "^5.5.4"
}
}