-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "@heex/react",
"version": "0.5.1",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./index.css": "./dist/index.css"
},
"files": [
"package.json",
"yarn.lock",
"dist"
],
"license": "Apache-2.0",
"scripts": {
"prebuild": "rm -rf dist",
"build-js": "NODE_ENV=production rollup -c",
"build-css": "sass ./src/heex.scss ./dist/index.css --style compressed --no-source-map",
"build": "concurrently \"yarn:build-js\" \"yarn:build-css\"",
"watch-js": "NODE_ENV=development rollup -c -w",
"watch-css": "sass --watch ./src/heex.scss ./dist/index.css --no-source-map",
"watch": "concurrently \"yarn:watch-js\" \"yarn:watch-css\"",
"ul": "yarn unlink @heex/react",
"release": "release-it"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"concurrently": "^7.5.0",
"release-it": "^15.5.0",
"rollup": "^3.2.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-visualizer": "^5.8.3",
"sass": "^1.55.0"
},
"dependencies": {
"@babel/runtime": "^7.19.4",
"ahooks": "^3.7.2",
"react-icons": "^4.6.0",
"use-debounce": "^8.0.4"
},
"publishConfig": {
"access": "public"
}
}