mirror of
https://github.com/chrononeko/chronocat.git
synced 2024-11-16 21:00:22 +00:00
41 lines
909 B
JSON
41 lines
909 B
JSON
{
|
|
"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": {
|
|
".": {
|
|
"default": "./lib/index.js",
|
|
"import": "./lib/index.js",
|
|
"types": "./lib/index.d.ts"
|
|
},
|
|
"./src": {
|
|
"default": "./src/index.ts",
|
|
"import": "./src/index.ts",
|
|
"types": "./src/index.ts"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"build": "node -r esbuild-register ../../scripts/runOnChanged.cts ./src tsc -p tsconfig.json"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.1",
|
|
"esbuild-register": "^3.5.0",
|
|
"ts-toolbelt": "^9.6.0",
|
|
"typescript": "~5.1.0"
|
|
}
|
|
}
|