-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "@byteclaw/babel-plugin-visage",
"version": "1.0.0-alpha.2",
"description": "A recommended babel preprocessing plugin for @byteclaw/visage design system. Hoists styles props from React JSX components.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": [
"babel",
"react",
"css",
"css-in-js",
"design system",
"visage"
],
"files": [
"!src/**/__tests_/**/*",
"src",
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Byteclaw/visage/issues"
},
"homepage": "https://github.com/Byteclaw/visage/packages/babel-plugin-visage/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Byteclaw/visage.git"
},
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.8.3",
"@types/babel__core": "^7.1.14"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdx build --format cjs --entry src/index.ts",
"prepublishOnly": "tsdx build --format cjs --target node --entry src/index.ts"
}
}