-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "@hurby/dribbble.js",
"description": "JavaScript SDK for Dribbble.",
"author": "hurby",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/hurby24/dribbble.js.git"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"publishConfig": {
"access": "public"
},
"keywords": ["api", "sdk", "dribbble", "javascript", "typescript"],
"files": ["dist", "README.md"],
"scripts": {
"dev": "bun run --watch examples/index.ts",
"build": "tsup",
"test": "bun test",
"format": "bunx biome format --write .",
"lint:fix": "bunx biome lint --write --unsafe ./src",
"lint": "bunx biome lint --write ./src",
"typecheck": "tsc --noEmit",
"version": "changeset version",
"release": "bun run build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.11",
"@types/bun": "latest",
"husky": "^9.1.7",
"tsup": "^8.3.5",
"typedoc": "^0.27.6"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}