-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "uefa-api",
"version": "1.0.2",
"description": "Typescript bindings and utils for the UEFA APIs",
"license": "MIT",
"keywords": [
"uefa",
"sports",
"matches",
"football",
"futsal",
"api"
],
"author": {
"name": "Erik Michelson",
"email": "[email protected]",
"url": "https://erik.michelson.eu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ErikMichelson/uefa-api.git"
},
"type": "module",
"source": "src/index.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./dist/index.d.ts": "./dist/index.d.ts"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle && cp src/*.d.ts dist/",
"dev": "microbundle watch",
"fix": "biome check --write src/",
"lint": "biome check src/",
"ci": "biome ci --reporter=github src/",
"prepublishOnly": "npm run lint && npm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"microbundle": "^0.15.1"
},
"files": [
"LICENSE",
"dist"
]
}