-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
55
56
57
58
{
"name": "@topsort/sdk",
"version": "0.3.2",
"description": "The official Topsort SDK for TypeScript and JavaScript",
"packageManager": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.mjs",
"author": "Márcio Barbosa <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Topsort/topsort.js"
},
"bugs": {
"url": "https://github.com/Topsort/topsort.js/issues"
},
"exports": {
".": {
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"types": "./dist/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist/index.d.mts",
"dist/index.d.ts",
"dist/index.js",
"dist/index.mjs",
"package.json"
],
"scripts": {
"build": "bun -b tsup",
"test:e2e": "bun run build && playwright test",
"format": "biome check",
"format:fix": "biome check --write",
"prepare": "lefthook install",
"serve:e2e": "bun run ./e2e/server.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.50.0",
"@types/bun": "1.1.14",
"lefthook": "1.10.10",
"msw": "2.4.3",
"tsup": "8.3.6",
"typescript": "5.7.3"
},
"keywords": ["topsort", "sdk", "javascript", "typescript"]
}