-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "counter-wc",
"version": "0.1.3",
"description": "Example of Web Component with Brisa",
"repository": {
"type": "git",
"url": "https://github.com/aralroca/counter-wc.git"
},
"license": "MIT",
"author": {
"name": "Aral Roca Gòmez",
"email": "contact@aralroca.com"
},
"main": "./build/counter-wc.client.js",
"module": "./build/counter-wc.client.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./build/counter-wc.client.js",
"require": "./build/counter-wc.client.js"
},
"./server": {
"import": "./build/counter-wc.server.js",
"require": "./build/counter-wc.server.js"
},
"./types": {
"import": "./index.d.ts",
"require": "./index.d.ts"
}
},
"files": ["build", "index.d.ts"],
"type": "module",
"scripts": {
"build": "brisa build -w src/counter-wc.tsx",
"format": "bun run biome format --write .",
"lint": "bun run biome lint --write ."
},
"packageManager": "bun@1.1.24",
"engines": {
"bun": ">= 1.1.24",
"npm": "please-use-bun",
"yarn": "please-use-bun",
"pnpm": "please-use-bun"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"brisa": "0.0.235",
"typescript": "5.6.2"
}
}