-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sketch-crowdin",
"displayName": "Crowdin plugin for Sketch",
"description": "Localize the UI before programming starts. Translate and preview any design with ease",
"publisher": "Crowdin",
"version": "2.8.0",
"engines": {
"sketch": ">=3.0"
},
"keywords": [
"Crowdin",
"Localization"
],
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/crowdin/sketch-crowdin.git"
},
"skpm": {
"name": "sketch-crowdin",
"manifest": "src/manifest.json",
"main": "sketch-crowdin.sketchplugin",
"assets": [
"assets/**/*",
"ui/**/*",
"!ui/plugin.html",
"node_modules/bootstrap/dist/css/bootstrap.min.css*",
"node_modules/bootstrap/dist/js/bootstrap.min.js*",
"node_modules/bootstrap-select/dist/css/bootstrap-select.min.css*",
"node_modules/bootstrap-select/dist/js/bootstrap-select.min.js*",
"node_modules/popper.js/dist/umd/popper.min.js*",
"node_modules/jquery/dist/jquery.min.js*"
]
},
"scripts": {
"prebuild": "npm rebuild node-sass && npm run sass",
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link",
"sass": "node-sass ui/styles.scss ui/styles.css",
"sass-dev": "node-sass ui/styles.scss sketch-crowdin.sketchplugin/Contents/Resources/styles.css"
},
"dependencies": {
"@crowdin/crowdin-api-client": "1.28.2",
"@skpm/buffer": "0.1.4",
"bootstrap": "5.3.3",
"bootstrap-select": "^1.13.18",
"jquery": "3.7.1",
"jszip": "^3.10.1",
"node-html-parser": "^6.1.11",
"popper.js": "^1.14.3",
"sketch-module-web-view": "^3.5.1"
},
"devDependencies": {
"@babel/polyfill": "^7.7.0",
"@skpm/builder": "0.9.5",
"node-sass": "9.0.0"
}
}