admin-vben/packages/@core/shared/design-tokens/package.json

40 lines
908 B
JSON
Raw Normal View History

2024-05-19 13:20:42 +00:00
{
"name": "@vben-core/design-tokens",
2024-06-16 15:50:17 +00:00
"version": "5.0.0",
2024-05-19 13:20:42 +00:00
"homepage": "https://github.com/vbenjs/vue-vben-admin",
2024-06-16 15:56:20 +00:00
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
2024-05-19 13:20:42 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/vbenjs/vue-vben-admin.git",
"directory": "packages/@vben-core/shared/design-tokens"
},
2024-06-16 15:56:20 +00:00
"license": "MIT",
"type": "module",
2024-05-19 13:20:42 +00:00
"scripts": {
"build": "pnpm vite build",
"dts": "vue-tsc --declaration --emitDeclarationOnly --declarationDir dist",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.css",
"exports": {
".": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"default": "./dist/index.css"
}
},
"publishConfig": {
"exports": {
".": {
"default": "./dist/index.mjs"
}
}
}
}