summaryrefslogtreecommitdiff
path: root/packages/frontend-shared/package.json
blob: 6afd4e8a23aa3a76a9cd0541bc448c0282b3dd50 (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
41
{
	"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 --quiet \"{src,test,js,@types}/**/*.{js,jsx,ts,tsx,vue}\" --cache",
		"typecheck": "tsc --noEmit",
		"lint": "pnpm typecheck && pnpm eslint"
	},
	"devDependencies": {
		"@types/node": "22.9.0",
		"@typescript-eslint/eslint-plugin": "7.17.0",
		"@typescript-eslint/parser": "7.17.0",
		"esbuild": "0.24.0",
		"eslint-plugin-vue": "9.31.0",
		"nodemon": "3.1.7",
		"typescript": "5.6.3",
		"vue-eslint-parser": "9.4.3"
	},
	"files": [
		"js-built"
	],
	"dependencies": {
		"misskey-js": "workspace:*",
		"nodemon": "3.1.7",
		"vue": "3.5.12"
	}
}