misskey/packages/frontend-shared/package.json

37 lines
802 B
JSON
Raw Normal View History

2024-08-23 03:47:22 +00:00
{
"name": "frontend-shared",
"type": "module",
2024-08-29 09:38:32 +00:00
"main": "./js-built/index.js",
"types": "./js-built/index.d.ts",
2024-08-23 03:47:22 +00:00
"exports": {
".": {
2024-08-29 09:38:32 +00:00
"import": "./js-built/index.js",
"types": "./js-built/index.d.ts"
2024-08-23 03:47:22 +00:00
},
"./*": {
2024-08-29 09:38:32 +00:00
"import": "./js-built/*",
"types": "./js-built/*"
2024-08-23 03:47:22 +00:00
}
},
"scripts": {
2024-08-29 09:38:32 +00:00
"build": "node ./build.js",
"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
2024-08-23 03:47:22 +00:00
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
"typecheck": "tsc --noEmit",
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
"@types/node": "20.14.12",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"typescript": "5.5.4",
"esbuild": "0.23.0"
},
"files": [
2024-08-29 09:38:32 +00:00
"js-built"
2024-08-23 03:47:22 +00:00
],
"dependencies": {
2024-08-30 11:41:02 +00:00
"vue": "3.4.37"
2024-08-23 03:47:22 +00:00
}
}