summaryrefslogtreecommitdiff
path: root/packages/frontend-shared/package.json
blob: c4e37d395364ebef74ab49fc98fc6b2bae8930e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
	"name": "frontend-shared",
	"type": "module",
	"main": "./js-built/index.js",
	"types": "./js-built/index.d.ts",
	"exports": {
		".": {
			"import": "./js-built/index.js",
			"types": "./js-built/index.d.ts"
		},
		"./*": {
			"import": "./js-built/*",
			"types": "./js-built/*"
		}
	},
	"scripts": {
		"build": "node ./build.js",
		"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
		"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
		"typecheck": "tsgo --noEmit",
		"lint": "pnpm typecheck && pnpm eslint"
	},
	"devDependencies": {
		"@types/node": "24.10.13",
		"@typescript-eslint/eslint-plugin": "8.55.0",
		"@typescript-eslint/parser": "8.55.0",
		"esbuild": "0.27.3",
		"eslint-plugin-vue": "10.8.0",
		"nodemon": "3.1.11",
		"vue-eslint-parser": "10.4.0"
	},
	"files": [
		"js-built"
	],
	"dependencies": {
		"i18n": "workspace:*",
		"misskey-js": "workspace:*",
		"vue": "3.5.28"
	}
}