chronocat/packages/red/package.json

36 lines
777 B
JSON
Raw Normal View History

2024-03-05 12:07:23 +00:00
{
"name": "@chronocat/red",
"version": "0.0.0",
"private": true,
"license": "AGPL-3.0",
"author": {
"name": "Il Harper",
"email": "hi@ilharper.com",
"url": "https://ilharper.com"
},
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"scripts": {
"build": "node -r esbuild-register ../../scripts/runOnChanged.cts ./src tsc -p tsconfig.json"
2024-03-05 12:07:23 +00:00
},
"devDependencies": {
"concurrently": "^8.2.1",
"tosource": "^2.0.0-alpha.3",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"typescript": "~5.1.0"
}
}