-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 941 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
36
37
38
39
{
"name": "find-and-replace-text",
"version": "1.3.1",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "Find and Replace Text",
"manifest": "src/manifest.json",
"main": "find-and-replace-text.sketchplugin",
"assets": [
"assets/**/*.otf"
]
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "^0.5.16",
"@skpm/extract-loader": "^2.0.2",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^1.0.0",
"html-loader": "^0.5.1"
},
"resources": [
"resources/**/*.js"
],
"dependencies": {
"sketch-module-web-view": "^3.2.1"
},
"author": "Chris Wetterman <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/chriswetterman/sketch-find-and-replace-text.git"
}
}