-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
41
42
43
44
45
46
{
"name": "picasso",
"version": "2.2.3",
"description": "Picasso是58同城推出的一款sketch生成代码插件,可将sketch设计稿自动解析成还原精准,可用度高的前端代码",
"engines": {
"sketch": ">=60.0"
},
"skpm": {
"name": "picasso",
"manifest": "src/manifest.json",
"main": "picasso.sketchplugin",
"assets": [
"assets/**/*"
]
},
"scripts": {
"build": "skpm-build",
"reload": "rimraf ~/Library/ApplicationSupport/com.bohemiancoding.sketch3/Plugins/picasso.sketchplugin && skpm-build --output ../../../../../../Library/ApplicationSupport/com.bohemiancoding.sketch3/Plugins/picasso.sketchplugin ",
"dev": "skpm-build --watch --output ../../../../../../Library/ApplicationSupport/com.bohemiancoding.sketch3/Plugins/hotwheels.sketchplugin ",
"watch": "skpm-build --watch",
"start": "skpm-build --watch",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "^0.7.4",
"@skpm/extract-loader": "^2.0.2",
"css-loader": "^3.2.0",
"eslint-config-sketch": "^0.2.4",
"html-loader": "^0.5.5",
"rimraf": "^3.0.2"
},
"resources": [
"resources/**/*.js"
],
"dependencies": {
"@wubafe/picasso-parse": "0.0.42",
"@skpm/fs": "^0.2.6",
"@skpm/promise": "^0.1.0",
"sketch-module-web-view": "^3.1.4"
},
"author": "huangwencun <huangwencun1990@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/wuba/Picasso.git"
}
}