-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.03 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "slack-blocks-to-jsx",
"author": "Manish Panwar <codeemash@gmail.com>",
"description": "A library to convert Slack blocks to JSX components to be used with React",
"keywords": [
"slack",
"slack-blocks",
"slack-blocks-to-jsx",
"slack-blocks-to-react",
"slack-blocks-to-react-comp"
],
"repository": "https://github.com/themashcodee/slack-blocks-to-jsx.git",
"license": "MIT",
"version": "1.1.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/themashcodee/slack-blocks-to-jsx/issues"
},
"homepage": "https://github.com/themashcodee/slack-blocks-to-jsx#readme",
"scripts": {
"build": "tsup && npm run build:css",
"build:css": "postcss ./src/style.css -o ./dist/style.css",
"dev:css": "postcss ./src/style.css -o ./dist/style.css --watch",
"dev": "tsup --watch",
"lint": "tsc",
"test": "node --test \"test/**/*.test.mjs\"",
"release": "node scripts/release.mjs",
"release:dry": "node scripts/release.mjs --dry-run",
"release:beta": "node scripts/release.mjs prerelease --preid=beta",
"release:alpha": "node scripts/release.mjs prerelease --preid=alpha",
"playground:install": "cd playground && npm install",
"playground": "cd playground && npm run dev",
"playground:build": "cd playground && npm run build"
},
"dependencies": {
"node-emoji": "^2.1.3",
"react-markdown": "^9.1.0",
"remark-gfm": "^4.0.1"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19"
},
"devDependencies": {
"@yozora/ast": "^2.3.2",
"@yozora/character": "^2.3.2",
"@yozora/core-tokenizer": "^2.3.2",
"@yozora/parser": "^2.3.2",
"@types/react": "^17 || ^18 || ^19",
"@types/react-dom": "^17 || ^18 || ^19",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"postcss-nesting": "^12.0.2",
"tailwindcss": "^3.4.1",
"tsup": "^8.5.0",
"typescript": "^5.2.2"
}
}