forked from chakra-ui/panda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1012 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
{
"name": "@pandacss/is-valid-prop",
"version": "0.17.4",
"description": "Common error messages for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"mdn": "tsx scripts/prepare.ts",
"build": "tsup src/index.ts --format=esm,cjs --dts && tsx scripts/postbuild.ts",
"build-fast": "tsup src/index.ts --format=esm,cjs --no-dts",
"dev": "tsup src/index.ts --watch --format=esm,cjs --no-dts --onSuccess=\"tsx scripts/postbuild.ts\""
},
"files": [
"dist"
],
"devDependencies": {
"mdn-data": "^2.0.32"
}
}