mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-25 15:47:59 +03:00
23 lines
398 B
JSON
23 lines
398 B
JSON
{
|
|
"name": "amnet-shared",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "AMNet shared library",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.2.4",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|