-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "carbon-design-system",
"homepage": "https://github.com/carbon-design-system/carbon-sketch-assistant",
"version": "1.0.1",
"main": "dist/index.js",
"sketch": "dist/sketch.js",
"license": "MIT",
"sketch-assistant": {
"title": "Carbon Design System",
"description": "Keeps your document in line with Carbon Design System Sketch rules",
"icon": "https://carbon-design-system.github.io/carbon-sketch-assistant//public/icon.png"
},
"author": {
"name": "IBM"
},
"keywords": [
"sketch",
"sketch files",
"sketch assistant",
"public",
"assistant",
"design ops"
],
"files": [
"dist"
],
"scripts": {
"test": "jest --no-cache",
"build": "rm -rf dist && npm run build:node && npm run build:sketch",
"build:node": "tsc",
"build:sketch": "webpack",
"package-tarball": "npm run build && npm pack"
},
"devDependencies": {
"@sketch-hq/sketch-assistant-utils": "6.0.0",
"@types/jest": "26.0.4",
"@types/node": "14.0.22",
"jest": "26.1.0",
"node-fetch": "2.6.1",
"prettier": "2.0.5",
"ts-jest": "26.1.2",
"typescript": "3.9.6",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
},
"dependencies": {
"@sketch-hq/sketch-assistant-types": "6.0.0",
"@sketch-hq/sketch-core-assistant": "^6.1.0"
}
}