-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 KB
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
{
"name": "@adaptive-web/adaptive-ui-designer-figma",
"version": "0.5.3",
"description": "Figma integration for Adaptive Web.",
"main": "./dist/lib/index.js",
"bin": {
"aui-figma-compiler": "./bin/aui-figma-compiler.js"
},
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
}
},
"type": "module",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build": "tsc --build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"watch": "tsc --build --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adaptive-Web-Community/Adaptive-Web-Components",
"directory": "packages/adaptive-ui-designer-figma"
},
"author": {
"name": "Adaptive Web Community",
"url": "https://github.com/adaptive-web-community"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/adaptive-web-community/adaptive-web-components/issues"
},
"homepage": "https://github.com/adaptive-web-community/adaptive-web-components#readme",
"devDependencies": {
"@figma/rest-api-spec": "^0.36.0",
"@types/inquirer": "^9.0.7"
},
"dependencies": {
"@adaptive-web/adaptive-ui": "^0.13.0",
"@adaptive-web/adaptive-ui-designer-core": "^0.6.0",
"@types/ajv": "^1.0.0",
"ajv": "^8.18.0",
"change-case": "^5.4.4",
"inquirer": "^9.2.22",
"rimraf": "^3.0.2"
}
}