-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 744 Bytes
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
{
"name": "Isometry",
"description": "Create isometric projections from layers",
"version": "1.0.0",
"engines": {
"sketch": ">=52.0"
},
"skpm": {
"name": "Isometry",
"manifest": "src/manifest.json",
"main": "Isometry.sketchplugin",
"assets": [
"assets/**/*"
]
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "^0.7.0"
},
"author": "Max Konovalov",
"homepage": "https://github.com/maxkonovalov/Isometry",
"repository": {
"type": "git",
"url": "https://github.com/maxkonovalov/Isometry.git"
},
"license": "MIT"
}