-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 800 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 800 Bytes
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
{
"name": "tsb",
"version": "0.0.1",
"description": "A TypeScript port of pandas, built from first principles",
"license": "BSD-3-Clause",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"build": "bun build ./src/index.ts --outdir ./dist --target browser",
"playground": "bun run playground/serve.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"fast-check": "^3.22.0",
"@types/bun": "^1.1.14"
},
"peerDependencies": {
"typescript": "^5.7.0"
}
}