-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"author": {
"name": "Oscar Palmér",
"url": "https://oscarpalmer.se"
},
"dependencies": {
"@oscarpalmer/atoms": "^0.71.0",
"@oscarpalmer/sentinel": "^0.23.0",
"@oscarpalmer/toretto": "0.12.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "^1.1.8",
"bun": "^1.1.27",
"dts-bundle-generator": "^9.5.1",
"typescript": "^5.5.4"
},
"exports": {
".": {
"bun": "./src/index.ts",
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./types/index.d.cts",
"default": "./dist/index.js"
}
}
},
"files": ["dist/index.js", "dist/**/*.mjs", "src", "types"],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"name": "@oscarpalmer/abydon",
"repository": {
"type": "git",
"url": "git+https://github.com/oscarpalmer/abydon.git"
},
"scripts": {
"build": "bun run clean && bunx bun ./.bun.ts && bunx bun ./.bun.ts --mjs && bun run types",
"clean": "rm -rf ./dist && rm -rf ./types && rm -rf ./tsconfig.tsbuildinfo",
"types": "bun run types:cjs && bun run types:esm",
"types:cjs": "bunx dts-bundle-generator --out-file ./types/index.d.cts --no-check --silent ./src/index.ts",
"types:esm": "bunx tsc -p ./tsconfig.json",
"watch": "bun build ./src/index.ts --outfile ./dist/index.js --watch"
},
"type": "module",
"types": "types/index.d.ts",
"version": "0.12.0"
}