-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 927 Bytes
/
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
{
"name": "npm-bun-tsup-library",
"description": "My Library template",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"test": "echo 'Not defined' || exit 1",
"ci:version": "changeset version && bun install --no-frozen-lockfile",
"ci:publish": "changeset publish"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"keywords": [
"cool",
"package"
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"bun-types": "latest",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"license": "MIT"
}