0
Fork 0
mirror of https://github.com/penpot/penpot-export.git synced 2025-01-23 06:58:42 -05:00
penpot-export/packages/cli/package.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2023-08-21 08:36:47 +02:00
{
"name": "@penpot-export/cli",
2023-10-02 14:25:57 +02:00
"version": "0.1.1",
"license": "Apache-2.0",
2023-10-02 14:25:22 +02:00
"description": "penpot-export is a tool designed to export your design tokens created in Penpot into ready-to-use code or parseable data files.",
2023-08-21 08:36:47 +02:00
"files": [
"dist"
],
"bin": {
"penpot-export": "./dist/bin/index.js"
},
2023-08-21 08:36:47 +02:00
"scripts": {
"prepack": "npm run build",
2023-08-21 08:36:47 +02:00
"build": "tsc",
"pretest": "npm run build",
"test": "node --test",
2023-08-22 13:42:57 +02:00
"format": "prettier -w .",
2023-08-21 08:36:47 +02:00
"dev": "tsc-watch"
},
"dependencies": {
2023-10-02 14:25:57 +02:00
"@penpot-export/core": "0.1.1",
2023-08-22 13:42:57 +02:00
"prettier": "^3.0.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"
2023-10-02 14:25:22 +02:00
},
"homepage": "https://github.com/penpot/penpot-export#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/penpot/penpot-export.git"
},
"bugs": {
"url": "https://github.com/penpot/penpot-export/issues"
},
"keywords": [
"Penpot",
"export",
"design",
"design tokens",
"W3C Design Tokens Format",
"typographies",
"colors",
"cli"
]
2023-08-21 08:36:47 +02:00
}