pecans/package.json

51 lines
1.1 KiB
JSON
Raw Normal View History

2023-10-11 10:04:24 -07:00
{
2023-10-14 11:51:02 -07:00
"name": "pecans",
2023-10-11 10:04:24 -07:00
"version": "1.0.0",
2023-10-14 11:51:02 -07:00
"description": "Pretty easy Two Cans & String API wrapper",
2023-10-11 10:04:24 -07:00
"scripts": {
"build": "jsii --strict",
"dist": "jsii --strict && jsii-pacmak",
"clean": "rm -r dist obj || true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"repository": {
"url": "https://github.com/humanoidsandvichdispenser/pew.git"
},
"main": "obj/index.js",
"types": "obj/index.d.ts",
"author": {
"name": "HumanoidSandvichDispenser",
"email": "humanoidsandvichdispenser@gmail.com"
},
"license": "GPL-3.0-only",
"jsii": {
2023-10-20 01:24:53 -07:00
"excludeTypescript": [
"**/*.test.ts"
],
2023-10-11 10:04:24 -07:00
"versionFormat": "full",
"outdir": "dist",
"tsc": {
"outDir": "obj",
"rootDir": "src"
},
"targets": {
"python": {
2023-10-14 11:51:02 -07:00
"distName": "pecans",
"module": "pecans"
},
"dotnet": {
"namespace": "Pecans",
"packageId": "Pecans"
2023-10-11 10:04:24 -07:00
}
}
},
"stability": "experimental",
"devDependencies": {
"@types/node": "^20.8.4",
"jsii": "^5.2.14",
2023-10-20 01:24:53 -07:00
"jsii-pacmak": "^1.90.0",
"vitest": "^0.34.6"
2023-10-11 10:04:24 -07:00
}
}