shared/package.json 304 B raw
1
{
2
	"name": "shared",
3
	"version": "0.0.1",
4
	"main": "dist/index.js",
5
	"types": "dist/index.d.ts",
6
	"exports": {
7
		".": {
8
			"types": "./dist/index.d.ts",
9
			"default": "./dist/index.js"
10
		}
11
	},
12
	"scripts": {
13
		"build": "tsc",
14
		"dev": "tsc --watch"
15
	},
16
	"devDependencies": {
17
		"typescript": "^5.9.3"
18
	}
19
}