30 lines
610 B
JSON
30 lines
610 B
JSON
{
|
|
"name": "@wyvern/config",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsc --watch",
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit --skipLibCheck"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"default": "./dist/src/index.js",
|
|
"types": "./src/index.ts"
|
|
},
|
|
"./debug": {
|
|
"default": "./dist/src/configs/debug.js",
|
|
"types": "./src/configs/debug.ts"
|
|
},
|
|
"./global": {
|
|
"default": "./dist/src/configs/global.js",
|
|
"types": "./src/configs/global.ts"
|
|
}
|
|
}
|
|
}
|