-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "tayparser",
"version": "0.0.2",
"description": "⚡ Markdown parser compatible with Tailwind Css",
"main": "./src/index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"tailwindcss": "^3.0.23",
"typescript": "^4.7.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"tsc": "tsc --watch",
"build": "tsc",
"pack": "minify ./dist/build.js > ./dist/index.min.js",
"tailwinds": "npx tailwindcss -i ./test/build.css -o ./test/tailwinds.css --watch --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jareer12/TailwindsMarkdown.git"
},
"keywords": [
"tailwind",
"markdown",
"parser",
"parse"
],
"author": "jub0t",
"license": "MIT",
"bugs": {
"url": "https://github.com/jareer12/TailwindsMarkdown/issues"
},
"homepage": "https://github.com/jareer12/TailwindsMarkdown#readme",
"dependencies": {
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2"
}
}