30 lines
628 B
JSON
30 lines
628 B
JSON
{
|
|
"name": "@gadget/config",
|
|
"version": "1.0.0",
|
|
"description": "Gadget Code YAML configuration loader",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch"
|
|
},
|
|
"keywords": ["gadget", "config", "yaml"],
|
|
"author": "Rob Colbert",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^25.6.0",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|