This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
63
64
65
66
67
68
69
70
{
"name": "@twind/macro",
"version": "0.1.2",
"description": "A babel macro for twind, adds support for tw prop in jsx",
"homepage": "https://github.com/tw-in-js/twind.macro#readme",
"repository": "https://github.com/tw-in-js/twind.macro",
"bugs": "https://github.com/tw-in-js/twind.macro/issues",
"changelog": "https://github.com/tw-in-js/twind.macro/releases",
"main": "dist/macro.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"author": {
"name": "MapleLeaf",
"url": "https://github.com/itsMapleLeaf"
},
"keywords": [
"twind",
"tailwind",
"babel macro"
],
"scripts": {
"build": "trash dist && tsc --project tsconfig.build.json",
"test": "jest",
"test-watch": "jest --watchAll",
"format": "prettier --write .",
"release": "npx np"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/helper-annotate-as-pure": "^7.12.10",
"babel-plugin-macros": "^3.0.1"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "7.12.7",
"@types/babel-plugin-macros": "^2.8.4",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"@types/react": "^17.0.0",
"babel-plugin-tester": "10.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"trash-cli": "^4.0.0",
"ts-node": "^9.1.1",
"twind": "^0.11.0",
"typescript": "~4.1.3"
},
"peerDependencies": {
"twind": ">=0.11"
},
"optionalDependencies": {
"@types/react": "*"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
}
}