mirror of
https://github.com/Smile-QWQ/SubTracker.git
synced 2026-05-08 08:10:30 +08:00
30 lines
612 B
JSON
30 lines
612 B
JSON
{
|
|
"name": "@subtracker/shared",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
"test": "vitest run",
|
|
"lint": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.3"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.4.0",
|
|
"vitest": "^3.1.1"
|
|
}
|
|
}
|