-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 1023 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "import-colors",
"version": "2.0.3",
"description": "Import colors from swatches file to Sketch. (For Sketch 69+)",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "import-colors",
"manifest": "src/manifest.json",
"main": "import-colors.sketchplugin",
"assets": [
"assets/**/*"
]
},
"scripts": {
"build": "export NODE_OPTIONS=--openssl-legacy-provider && skpm-build",
"watch": "export NODE_OPTIONS=--openssl-legacy-provider && skpm-build --watch",
"start": "export NODE_OPTIONS=--openssl-legacy-provider && skpm-build --watch --run",
"postinstall": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build && skpm-link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ashung/import-colors-sketch.git"
},
"author": "Ashung <[email protected]>",
"license": "MIT",
"dependencies": {
"@skpm/dialog": "^0.2.6",
"@skpm/fs": "^0.2.6"
},
"devDependencies": {
"@skpm/builder": "^0.7.7"
}
}