Files
hereconnect/packages/constants/package.json
T

27 lines
561 B
JSON
Raw Normal View History

2024-12-10 13:21:38 +02:00
{
"name": "@hereconnect/constants",
"version": "1.0.0",
2024-12-12 17:45:01 +02:00
"type": "module",
2024-12-10 13:21:38 +02:00
"main": "dist/index.js",
2024-12-12 17:45:01 +02:00
"types": "dist/index.d.ts",
2024-12-10 13:21:38 +02:00
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": ["dist/**/*"],
"private": true,
"scripts": {
"lint": "tsc --noEmit src/index.ts",
"build": "tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@hereconnect/types": "workspace:^"
},
"peerDependencies": {
"typescript": "~5.6.3"
}
}