-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 KB
/
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
36
37
38
39
40
{
"name": "chromatic-sketch",
"version": "2.0.0",
"description": "Create good-looking and perceptually uniform gradients and color scales (using Chroma.js and the Lab color space)",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "chromatic-sketch",
"manifest": "src/manifest.json",
"main": "chromatic-sketch.sketchplugin"
},
"resources": [
"resources/script.js"
],
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
},
"author": "Petter Nilsson",
"homepage": "http://petter.pro",
"license": "ISC",
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"@skpm/builder": "^0.1.3",
"@skpm/extract-loader": "^1.0.1"
},
"dependencies": {
"aphrodite": "^1.2.5",
"chroma-js": "^1.3.3",
"rc-slider": "^8.3.1",
"react": "^16.0.0",
"react-color": "^2.13.8",
"react-desktop": "^0.3.1",
"react-dom": "^16.0.0",
"sketch-module-web-view": "^0.2.6"
}
}