handoff-app 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/index.js +1 -0
- package/package.json +25 -0
package/README.md
ADDED
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log("hello world! handoff-app is coming soon.");
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "handoff-app",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "An open source toolchain for extracting design tokens from the figma API and build design documentation.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/Convertiv/handoff-app.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"design",
|
|
15
|
+
"documentation",
|
|
16
|
+
"figma",
|
|
17
|
+
"handoff"
|
|
18
|
+
],
|
|
19
|
+
"author": "handoff@convertiv.com",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/Convertiv/handoff-app/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/Convertiv/handoff-app#readme"
|
|
25
|
+
}
|