-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"author": "helious",
"dependencies": {
"@emotion/react": "^11.0",
"@emotion/styled": "^11.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/react": "=12.1.5",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^16.14.0",
"http-server": "^14.1.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "^3.12.1",
"stylelint-bundle": "^14.14.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist"
],
"license": "MIT",
"main": "dist/cjs/emotion-mirror.js",
"module": "dist/es/emotion-mirror.js",
"name": "@helious/emotion-mirror",
"homepage": "https://github.com/helious/emotion-mirror",
"repository": "helious/emotion-mirror",
"scripts": {
"build": "rm -rf dist && NODE_ENV=production rollup -c & tsc -p tsconfig.declaration.json",
"start": "rm -rf build && rollup -cw & http-server public",
"test": "jest",
"test:watch": "jest --watch"
},
"sideEffects": false,
"type": "module",
"types": "dist/es/emotion-mirror.d.ts",
"version": "1.1.4"
}