-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 985 Bytes
/
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
{
"name": "@medici-uy/js-shared",
"version": "0.1.2",
"description": "JS shared utils for medici.uy.",
"type": "module",
"exports": {
".": "./dist/index.js",
"./reset.css": "./dist/reset.css"
},
"scripts": {
"build": "swc src --out-dir dist --copy-files src/*.css --strip-leading-paths",
"prebuild": "rm --recursive --force dist && npm run check",
"postbuild": "tsc",
"test": "node --test ./dist",
"check": "biome check --write",
"tsc": "tsc --noEmit",
"pretest": "npm run build"
},
"peerDependencies": {
"@pandacss/dev": ">=0.53.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@pandacss/dev": "0.53.4",
"@swc/cli": "0.7.3",
"@swc/core": "1.11.21",
"@types/debug": "4.1.12",
"@types/node": "22.14.1",
"typescript": "5.8.3"
},
"types": "dist/index.d.ts",
"author": "Diego Stratta <[email protected]>",
"repository": "[email protected]:medici-uy/js-shared.git",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">= 23.8.0"
}
}