-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
{
"name": "yabcounts",
"version": "1.0.2",
"description": "The official Node.js library for the YAB ?! Counts Public API.",
"author": "YAB ?! Counts",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://yabcounts.com",
"repository": {
"type": "git",
"url": "https://github.com/YABCounts/node.git"
},
"bugs": {
"url": "https://github.com/YABCounts/node/issues"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "tsc"
},
"keywords": [],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.9.1",
"tsup": "^8.0.0",
"typescript": "^5.2.2"
}
}