0
Fork 0
mirror of https://github.com/penpot/penpot-export.git synced 2025-01-23 23:18:43 -05:00
penpot-export/packages/core/package.json

29 lines
571 B
JSON
Raw Normal View History

2023-08-21 08:36:47 +02:00
{
"name": "@penpot-export/core",
2023-08-21 08:36:47 +02:00
"version": "0.0.0",
"license": "UNLICENSED",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
2023-08-21 08:36:47 +02:00
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "node --test",
"format": "prettier -w ."
2023-08-21 08:36:47 +02:00
},
"dependencies": {
2023-08-22 13:42:57 +02:00
"node-fetch": "2",
"prettier": "^3.0.2",
"zod": "^3.22.2"
2023-08-21 08:36:47 +02:00
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/node-fetch": "2",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.6"
}
}